add copyright/license information
[project/ubus.git] / libubus.h
1 /*
2 * Copyright (C) 2011 Felix Fietkau <nbd@openwrt.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License version 2.1
6 * as published by the Free Software Foundation
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14 #include <libubox/avl.h>
15 #include <libubox/list.h>
16 #include <libubox/blobmsg.h>
17 #include <libubox/uloop.h>
18 #include <stdint.h>
19 #include "ubusmsg.h"
20 #include "ubus_common.h"
21
22 struct ubus_context;
23 struct ubus_msg_src;
24 struct ubus_object;
25 struct ubus_request;
26 struct ubus_request_data;
27 struct ubus_object_data;
28 struct ubus_event_handler;
29
30 typedef void (*ubus_lookup_handler_t)(struct ubus_context *ctx,
31 struct ubus_object_data *obj,
32 void *priv);
33 typedef int (*ubus_handler_t)(struct ubus_context *ctx, struct ubus_object *obj,
34 struct ubus_request_data *req,
35 const char *method, struct blob_attr *msg);
36 typedef void (*ubus_event_handler_t)(struct ubus_context *ctx, struct ubus_event_handler *ev,
37 const char *type, struct blob_attr *msg);
38 typedef void (*ubus_data_handler_t)(struct ubus_request *req,
39 int type, struct blob_attr *msg);
40 typedef void (*ubus_complete_handler_t)(struct ubus_request *req, int ret);
41
42 #define UBUS_OBJECT_TYPE(_name, _methods) \
43 { \
44 .name = _name, \
45 .id = 0, \
46 .n_methods = ARRAY_SIZE(_methods), \
47 .methods = _methods \
48 }
49
50 #define UBUS_METHOD(_name, _handler, _policy) \
51 { \
52 .name = _name, \
53 .handler = _handler, \
54 .policy = _policy, \
55 .n_policy = ARRAY_SIZE(_policy) \
56 }
57
58 struct ubus_method {
59 const char *name;
60 ubus_handler_t handler;
61
62 const struct blobmsg_policy *policy;
63 int n_policy;
64 };
65
66 struct ubus_object_type {
67 const char *name;
68 uint32_t id;
69
70 const struct ubus_method *methods;
71 int n_methods;
72 };
73
74 struct ubus_object {
75 struct avl_node avl;
76
77 const char *name;
78 uint32_t id;
79
80 const char *path;
81 struct ubus_object_type *type;
82
83 const struct ubus_method *methods;
84 int n_methods;
85 };
86
87 struct ubus_event_handler {
88 struct ubus_object obj;
89
90 ubus_event_handler_t cb;
91 };
92
93 struct ubus_context {
94 struct list_head requests;
95 struct avl_tree objects;
96
97 struct uloop_fd sock;
98
99 uint32_t local_id;
100 uint32_t request_seq;
101
102 void (*connection_lost)(struct ubus_context *ctx);
103
104 struct {
105 struct ubus_msghdr hdr;
106 char data[UBUS_MAX_MSGLEN];
107 } msgbuf;
108 };
109
110 struct ubus_object_data {
111 uint32_t id;
112 uint32_t type_id;
113 const char *path;
114 struct blob_attr *signature;
115 };
116
117 struct ubus_request_data {
118 uint32_t object;
119 uint32_t peer;
120 uint32_t seq;
121 };
122
123 struct ubus_request {
124 struct list_head list;
125
126 struct list_head pending;
127 bool status_msg;
128 int status_code;
129 bool blocked;
130 bool cancelled;
131
132 uint32_t peer;
133 uint32_t seq;
134
135 ubus_data_handler_t raw_data_cb;
136 ubus_data_handler_t data_cb;
137 ubus_complete_handler_t complete_cb;
138
139 struct ubus_context *ctx;
140 void *priv;
141 };
142
143
144 struct ubus_context *ubus_connect(const char *path);
145 void ubus_free(struct ubus_context *ctx);
146
147 const char *ubus_strerror(int error);
148
149 static inline void ubus_add_uloop(struct ubus_context *ctx)
150 {
151 uloop_fd_add(&ctx->sock, ULOOP_EDGE_TRIGGER | ULOOP_BLOCKING | ULOOP_READ);
152 }
153
154 /* call this for read events on ctx->sock.fd when not using uloop */
155 static inline void ubus_handle_event(struct ubus_context *ctx)
156 {
157 ctx->sock.cb(&ctx->sock, ULOOP_READ);
158 }
159
160 /* ----------- raw request handling ----------- */
161
162 /* wait for a request to complete and return its status */
163 int ubus_complete_request(struct ubus_context *ctx, struct ubus_request *req,
164 int timeout);
165
166 /* complete a request asynchronously */
167 void ubus_complete_request_async(struct ubus_context *ctx,
168 struct ubus_request *req);
169
170 /* abort an asynchronous request */
171 void ubus_abort_request(struct ubus_context *ctx, struct ubus_request *req);
172
173 /* ----------- objects ----------- */
174
175 int ubus_lookup(struct ubus_context *ctx, const char *path,
176 ubus_lookup_handler_t cb, void *priv);
177
178 int ubus_lookup_id(struct ubus_context *ctx, const char *path, uint32_t *id);
179
180 /* make an object visible to remote connections */
181 int ubus_add_object(struct ubus_context *ctx, struct ubus_object *obj);
182
183 /* remove the object from the ubus connection */
184 int ubus_remove_object(struct ubus_context *ctx, struct ubus_object *obj);
185
186 /* ----------- rpc ----------- */
187
188 /* invoke a method on a specific object */
189 int ubus_invoke(struct ubus_context *ctx, uint32_t obj, const char *method,
190 struct blob_attr *msg, ubus_data_handler_t cb, void *priv,
191 int timeout);
192
193 /* asynchronous version of ubus_invoke() */
194 int ubus_invoke_async(struct ubus_context *ctx, uint32_t obj, const char *method,
195 struct blob_attr *msg, struct ubus_request *req);
196
197 /* send a reply to an incoming object method call */
198 int ubus_send_reply(struct ubus_context *ctx, struct ubus_request_data *req,
199 struct blob_attr *msg);
200
201 /* ----------- events ----------- */
202
203 int ubus_send_event(struct ubus_context *ctx, const char *id,
204 struct blob_attr *data);
205
206 int ubus_register_event_handler(struct ubus_context *ctx,
207 struct ubus_event_handler *ev,
208 const char *pattern);
209
210 static inline int ubus_unregister_event_handler(struct ubus_context *ctx,
211 struct ubus_event_handler *ev)
212 {
213 return ubus_remove_object(ctx, &ev->obj);
214 }