device.h 9.4 KB

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