Ensure that subcall_sync use subcall
[src/app-framework-binder.git] / src / afb-api-so-v1.c
1 /*
2  * Copyright (C) 2016, 2017 "IoT.bzh"
3  * Author José Bollo <jose.bollo@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #define _GNU_SOURCE
19 #define NO_BINDING_VERBOSE_MACRO
20
21 #include <string.h>
22 #include <dlfcn.h>
23 #include <assert.h>
24
25 #include <afb/afb-binding.h>
26
27 #include "afb-apis.h"
28 #include "afb-svc.h"
29 #include "afb-evt.h"
30 #include "afb-common.h"
31 #include "afb-context.h"
32 #include "afb-api-so.h"
33 #include "afb-xreq.h"
34 #include "verbose.h"
35
36 /*
37  * names of symbols
38  */
39 static const char afb_api_so_v1_register[] = "afbBindingV1Register";
40 static const char afb_api_so_v1_service_init[] = "afbBindingV1ServiceInit";
41 static const char afb_api_so_v1_service_event[] = "afbBindingV1ServiceEvent";
42
43 /*
44  * Description of a binding
45  */
46 struct api_so_v1 {
47         struct afb_binding *binding;    /* descriptor */
48         size_t apilength;               /* length of the API name */
49         void *handle;                   /* context of dlopen */
50         struct afb_svc *service;        /* handler for service started */
51         struct afb_binding_interface interface; /* interface for the binding */
52 };
53
54 static struct afb_event afb_api_so_event_make_cb(void *closure, const char *name);
55 static int afb_api_so_event_broadcast_cb(void *closure, const char *name, struct json_object *object);
56 static void afb_api_so_vverbose_cb(void *closure, int level, const char *file, int line, const char *fmt, va_list args);
57 static int afb_api_so_rootdir_get_fd(void *closure);
58 static int afb_api_so_rootdir_open_locale(void *closure, const char *filename, int flags, const char *locale);
59
60 static const struct afb_daemon_itf daemon_itf = {
61         .event_broadcast = afb_api_so_event_broadcast_cb,
62         .get_event_loop = afb_common_get_event_loop,
63         .get_user_bus = afb_common_get_user_bus,
64         .get_system_bus = afb_common_get_system_bus,
65         .vverbose = afb_api_so_vverbose_cb,
66         .event_make = afb_api_so_event_make_cb,
67         .rootdir_get_fd = afb_api_so_rootdir_get_fd,
68         .rootdir_open_locale = afb_api_so_rootdir_open_locale
69 };
70
71 static struct afb_event afb_api_so_event_make_cb(void *closure, const char *name)
72 {
73         size_t length;
74         char *event;
75         struct api_so_v1 *desc = closure;
76
77         /* makes the event name */
78         assert(desc->binding != NULL);
79         length = strlen(name);
80         event = alloca(length + 2 + desc->apilength);
81         memcpy(event, desc->binding->v1.prefix, desc->apilength);
82         event[desc->apilength] = '/';
83         memcpy(event + desc->apilength + 1, name, length + 1);
84
85         /* crate the event */
86         return afb_evt_create_event(event);
87 }
88
89 static int afb_api_so_event_broadcast_cb(void *closure, const char *name, struct json_object *object)
90 {
91         size_t length;
92         char *event;
93         struct api_so_v1 *desc = closure;
94
95         /* makes the event name */
96         assert(desc->binding != NULL);
97         length = strlen(name);
98         event = alloca(length + 2 + desc->apilength);
99         memcpy(event, desc->binding->v1.prefix, desc->apilength);
100         event[desc->apilength] = '/';
101         memcpy(event + desc->apilength + 1, name, length + 1);
102
103         return afb_evt_broadcast(event, object);
104 }
105
106 static void afb_api_so_vverbose_cb(void *closure, int level, const char *file, int line, const char *fmt, va_list args)
107 {
108         char *p;
109         struct api_so_v1 *desc = closure;
110
111         if (vasprintf(&p, fmt, args) < 0)
112                 vverbose(level, file, line, fmt, args);
113         else {
114                 verbose(level, file, line, "%s {binding %s}", p, desc->binding->v1.prefix);
115                 free(p);
116         }
117 }
118
119 static int afb_api_so_rootdir_get_fd(void *closure)
120 {
121         return afb_common_rootdir_get_fd();
122 }
123
124 static int afb_api_so_rootdir_open_locale(void *closure, const char *filename, int flags, const char *locale)
125 {
126         return afb_common_rootdir_open_locale(filename, flags, locale);
127 }
128
129 static const struct afb_verb_desc_v1 *search(struct api_so_v1 *desc, const char *name)
130 {
131         const struct afb_verb_desc_v1 *verb;
132
133         verb = desc->binding->v1.verbs;
134         while (verb->name && strcasecmp(verb->name, name))
135                 verb++;
136         return verb->name ? verb : NULL;
137 }
138
139 static void call_cb(void *closure, struct afb_xreq *xreq)
140 {
141         const struct afb_verb_desc_v1 *verb;
142         struct api_so_v1 *desc = closure;
143
144         verb = search(desc, xreq->verb);
145         if (!verb)
146                 afb_xreq_fail_f(xreq, "unknown-verb", "verb %s unknown within api %s", xreq->verb, desc->binding->v1.prefix);
147         else
148                 afb_xreq_call(xreq, verb->session, verb->callback);
149 }
150
151 static int service_start_cb(void *closure, int share_session, int onneed)
152 {
153         int (*init)(struct afb_service service);
154         void (*onevent)(const char *event, struct json_object *object);
155
156         struct api_so_v1 *desc = closure;
157
158         /* check state */
159         if (desc->service != NULL) {
160                 /* not an error when onneed */
161                 if (onneed != 0)
162                         return 0;
163
164                 /* already started: it is an error */
165                 ERROR("Service %s already started", desc->binding->v1.prefix);
166                 return -1;
167         }
168
169         /* get the initialisation */
170         init = dlsym(desc->handle, afb_api_so_v1_service_init);
171         if (init == NULL) {
172                 /* not an error when onneed */
173                 if (onneed != 0)
174                         return 0;
175
176                 /* no initialisation method */
177                 ERROR("Binding %s is not a service", desc->binding->v1.prefix);
178                 return -1;
179         }
180
181         /* get the event handler if any */
182         onevent = dlsym(desc->handle, afb_api_so_v1_service_event);
183         desc->service = afb_svc_create(share_session, init, onevent);
184         if (desc->service == NULL) {
185                 /* starting error */
186                 ERROR("Starting service %s failed", desc->binding->v1.prefix);
187                 return -1;
188         }
189
190         return 0;
191 }
192
193 int afb_api_so_v1_add(const char *path, void *handle)
194 {
195         struct api_so_v1 *desc;
196         struct afb_binding *(*register_function) (const struct afb_binding_interface *interface);
197         struct afb_verb_desc_v1 fake_verb;
198         struct afb_binding fake_binding;
199
200         /* retrieves the register function */
201         register_function = dlsym(handle, afb_api_so_v1_register);
202         if (!register_function)
203                 return 0;
204         INFO("binding [%s] is a valid AFB binding V1", path);
205
206         /* allocates the description */
207         desc = calloc(1, sizeof *desc);
208         if (desc == NULL) {
209                 ERROR("out of memory");
210                 goto error;
211         }
212         desc->handle = handle;
213
214         /* init the interface */
215         desc->interface.verbosity = verbosity;
216         desc->interface.mode = AFB_MODE_LOCAL;
217         desc->interface.daemon.itf = &daemon_itf;
218         desc->interface.daemon.closure = desc;
219
220         /* for log purpose, a fake binding is needed here */
221         desc->binding = &fake_binding;
222         fake_binding.type = AFB_BINDING_VERSION_1;
223         fake_binding.v1.info = path;
224         fake_binding.v1.prefix = path;
225         fake_binding.v1.verbs = &fake_verb;
226         fake_verb.name = NULL;
227
228         /* init the binding */
229         NOTICE("binding [%s] calling registering function %s", path, afb_api_so_v1_register);
230         desc->binding = register_function(&desc->interface);
231         if (desc->binding == NULL) {
232                 ERROR("binding [%s] register function failed. continuing...", path);
233                 goto error2;
234         }
235
236         /* check the returned structure */
237         if (desc->binding->type != AFB_BINDING_VERSION_1) {
238                 ERROR("binding [%s] invalid type %d...", path, desc->binding->type);
239                 goto error2;
240         }
241         if (desc->binding->v1.prefix == NULL || *desc->binding->v1.prefix == 0) {
242                 ERROR("binding [%s] bad prefix...", path);
243                 goto error2;
244         }
245         if (!afb_apis_is_valid_api_name(desc->binding->v1.prefix)) {
246                 ERROR("binding [%s] invalid prefix...", path);
247                 goto error2;
248         }
249         if (desc->binding->v1.info == NULL || *desc->binding->v1.info == 0) {
250                 ERROR("binding [%s] bad description...", path);
251                 goto error2;
252         }
253         if (desc->binding->v1.verbs == NULL) {
254                 ERROR("binding [%s] no APIs...", path);
255                 goto error2;
256         }
257
258         /* records the binding */
259         desc->apilength = strlen(desc->binding->v1.prefix);
260         if (afb_apis_add(desc->binding->v1.prefix, (struct afb_api){
261                         .closure = desc,
262                         .call = call_cb,
263                         .service_start = service_start_cb }) < 0) {
264                 ERROR("binding [%s] can't be registered...", path);
265                 goto error2;
266         }
267         NOTICE("binding %s loaded with API prefix %s", path, desc->binding->v1.prefix);
268         return 1;
269
270 error2:
271         free(desc);
272 error:
273         return -1;
274 }
275