device.h 10.0 KB

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