device.h 10 KB

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