e066b43d8d48cf32d192b353ea73167bc8c84db6
[project/netifd.git] / proto.h
1 #ifndef __NETIFD_PROTO_H
2 #define __NETIFD_PROTO_H
3
4 struct interface;
5 struct interface_proto_state;
6 struct proto_handler;
7
8 enum interface_proto_event {
9         IFPEV_UP,
10         IFPEV_DOWN,
11 };
12
13 enum interface_proto_cmd {
14         PROTO_CMD_SETUP,
15         PROTO_CMD_TEARDOWN,
16 };
17
18 enum {
19         PROTO_FLAG_IMMEDIATE = (1 << 0),
20         PROTO_FLAG_NODEV = (1 << 1),
21 };
22
23 struct interface_proto_state {
24         const struct proto_handler *handler;
25         struct interface *iface;
26
27         /* filled in by the protocol user */
28         void (*proto_event)(struct interface_proto_state *, enum interface_proto_event ev);
29
30         /* filled in by the protocol handler */
31         int (*cb)(struct interface_proto_state *, enum interface_proto_cmd cmd, bool force);
32         void (*free)(struct interface_proto_state *);
33 };
34
35
36 struct proto_handler {
37         struct avl_node avl;
38
39         unsigned int flags;
40
41         const char *name;
42         const struct config_param_list *config_params;
43
44         struct interface_proto_state *(*attach)(const struct proto_handler *h,
45                 struct interface *iface, struct blob_attr *attr);
46 };
47
48 void add_proto_handler(struct proto_handler *p);
49 void proto_init_interface(struct interface *iface, struct blob_attr *attr);
50 void proto_attach_interface(struct interface *iface, const char *proto_name);
51 int interface_proto_event(struct interface_proto_state *proto,
52                           enum interface_proto_cmd cmd, bool force);
53 int proto_apply_static_settings(struct interface_proto_state *state,
54                                 struct blob_attr *attr);
55
56 #endif