fix naming of plugin entries
[src/app-framework-binder.git] / src / afb-api-so.c
1 /*
2  * Copyright (C) 2016 "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
20 #include <stdio.h>
21 #include <assert.h>
22 #include <string.h>
23 #include <dirent.h>
24 #include <dlfcn.h>
25 #include <unistd.h>
26 #include <limits.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29
30 #include <afb/afb-plugin.h>
31 #include <afb/afb-req-itf.h>
32 #include <afb/afb-event-sender-itf.h>
33
34 #include "session.h"
35 #include "afb-common.h"
36 #include "afb-context.h"
37 #include "afb-apis.h"
38 #include "afb-api-so.h"
39 #include "afb-sig-handler.h"
40 #include "verbose.h"
41
42 struct api_so_desc {
43         struct AFB_plugin *plugin;      /* descriptor */
44         size_t apilength;
45         void *handle;                   /* context of dlopen */
46         struct AFB_interface interface; /* interface */
47 };
48
49 static int api_timeout = 15;
50
51 static const char plugin_register_function[] = "pluginAfbV1Register";
52
53 static void afb_api_so_event_sender_push(struct api_so_desc *desc, const char *name, struct json_object *object)
54 {
55         size_t length;
56         char *event;
57
58         assert(desc->plugin != NULL);
59         length = strlen(name);
60         event = alloca(length + 2 + desc->apilength);
61         memcpy(event, desc->plugin->v1.prefix, desc->apilength);
62         event[desc->apilength] = '/';
63         memcpy(event + desc->apilength + 1, name, length + 1);
64         ctxClientEventSend(NULL, event, object);
65 }
66
67 static const struct afb_event_sender_itf event_sender_itf = {
68         .push = (void*)afb_api_so_event_sender_push
69 };
70
71 static struct afb_event_sender afb_api_so_get_event_sender(struct api_so_desc *desc)
72 {
73         return (struct afb_event_sender){ .itf = &event_sender_itf, .closure = desc };
74 }
75
76 static const struct afb_daemon_itf daemon_itf = {
77         .get_event_sender = (void*)afb_api_so_get_event_sender,
78         .get_event_loop = (void*)afb_common_get_event_loop,
79         .get_user_bus = (void*)afb_common_get_user_bus,
80         .get_system_bus = (void*)afb_common_get_system_bus
81 };
82
83 struct monitoring {
84         struct afb_req req;
85         void (*action)(struct afb_req);
86 };
87
88 static void monitored_call(int signum, struct monitoring *data)
89 {
90         if (signum != 0)
91                 afb_req_fail_f(data->req, "aborted", "signal %s(%d) caught", strsignal(signum), signum);
92         else
93                 data->action(data->req);
94 }
95
96 static void call_check(struct afb_req req, struct afb_context *context, const struct AFB_verb_desc_v1 *verb)
97 {
98         struct monitoring data;
99
100         int stag = (int)(verb->session & AFB_SESSION_MASK);
101
102         if (stag != AFB_SESSION_NONE) {
103                 if (!afb_context_check(context)) {
104                         afb_context_close(context);
105                         afb_req_fail(req, "failed", "invalid token's identity");
106                         return;
107                 }       
108         }
109
110         if ((stag & AFB_SESSION_CREATE) != 0) {
111                 if (!afb_context_create(context)) {
112                         afb_context_close(context);
113                         afb_req_fail(req, "failed", "invalid creation state");
114                         return;
115                 }
116         }
117         
118         if ((stag & (AFB_SESSION_CREATE | AFB_SESSION_RENEW)) != 0)
119                 afb_context_refresh(context);
120
121         if ((stag & AFB_SESSION_CLOSE) != 0)
122                 afb_context_close(context);
123
124         data.req = req;
125         data.action = verb->callback;
126         afb_sig_monitor((void*)monitored_call, &data, api_timeout);
127 }
128
129 static void call(struct api_so_desc *desc, struct afb_req req, struct afb_context *context, const char *verb, size_t lenverb)
130 {
131         const struct AFB_verb_desc_v1 *v;
132
133         v = desc->plugin->v1.verbs;
134         while (v->name && (strncasecmp(v->name, verb, lenverb) || v->name[lenverb]))
135                 v++;
136         if (v->name)
137                 call_check(req, context, v);
138         else
139                 afb_req_fail_f(req, "unknown-verb", "verb %.*s unknown within api %s", (int)lenverb, verb, desc->plugin->v1.prefix);
140 }
141
142 int afb_api_so_add_plugin(const char *path)
143 {
144         struct api_so_desc *desc;
145         struct AFB_plugin *(*pluginAfbV1RegisterFct) (const struct AFB_interface *interface);
146
147         desc = calloc(1, sizeof *desc);
148         if (desc == NULL) {
149                 ERROR("out of memory");
150                 goto error;
151         }
152
153         // This is a loadable library let's check if it's a plugin
154         desc->handle = dlopen(path, RTLD_NOW | RTLD_LOCAL);
155         if (desc->handle == NULL) {
156                 ERROR("plugin [%s] not loadable", path);
157                 goto error2;
158         }
159
160         /* retrieves the register function */
161         pluginAfbV1RegisterFct = dlsym(desc->handle, plugin_register_function);
162         if (!pluginAfbV1RegisterFct) {
163                 ERROR("plugin [%s] is not an AFB plugin", path);
164                 goto error3;
165         }
166         INFO("plugin [%s] is a valid AFB plugin", path);
167
168         /* init the interface */
169         desc->interface.verbosity = 0;
170         desc->interface.mode = AFB_MODE_LOCAL;
171         desc->interface.daemon.itf = &daemon_itf;
172         desc->interface.daemon.closure = desc;
173
174         /* init the plugin */
175         desc->plugin = pluginAfbV1RegisterFct(&desc->interface);
176         if (desc->plugin == NULL) {
177                 ERROR("plugin [%s] register function failed. continuing...", path);
178                 goto error3;
179         }
180
181         /* check the returned structure */
182         if (desc->plugin->type != AFB_PLUGIN_VERSION_1) {
183                 ERROR("plugin [%s] invalid type %d...", path, desc->plugin->type);
184                 goto error3;
185         }
186         if (desc->plugin->v1.prefix == NULL || *desc->plugin->v1.prefix == 0) {
187                 ERROR("plugin [%s] bad prefix...", path);
188                 goto error3;
189         }
190         if (desc->plugin->v1.info == NULL || *desc->plugin->v1.info == 0) {
191                 ERROR("plugin [%s] bad description...", path);
192                 goto error3;
193         }
194         if (desc->plugin->v1.verbs == NULL) {
195                 ERROR("plugin [%s] no APIs...", path);
196                 goto error3;
197         }
198
199         /* records the plugin */
200         desc->apilength = strlen(desc->plugin->v1.prefix);
201         if (afb_apis_add(desc->plugin->v1.prefix, (struct afb_api){
202                         .closure = desc,
203                         .call = (void*)call}) < 0) {
204                 ERROR("plugin [%s] can't be registered...", path);
205                 goto error3;
206         }
207         NOTICE("plugin %s loaded with API prefix %s", path, desc->plugin->v1.prefix);
208         return 0;
209
210 error3:
211         dlclose(desc->handle);
212 error2:
213         free(desc);
214 error:
215         return -1;
216 }
217
218 static int adddirs(char path[PATH_MAX], size_t end)
219 {
220         DIR *dir;
221         struct dirent ent, *result;
222         size_t len;
223
224         /* open the DIR now */
225         dir = opendir(path);
226         if (dir == NULL) {
227                 ERROR("can't scan plugin directory %s, %m", path);
228                 return -1;
229         }
230         INFO("Scanning dir=[%s] for plugins", path);
231
232         /* scan each entry */
233         if (end)
234                 path[end++] = '/';
235         for (;;) {
236                 readdir_r(dir, &ent, &result);
237                 if (result == NULL)
238                         break;
239
240                 len = strlen(ent.d_name);
241                 if (len + end >= PATH_MAX) {
242                         ERROR("path too long while scanning plugins for %s", ent.d_name);
243                         continue;
244                 }
245                 memcpy(&path[end], ent.d_name, len+1);
246                 if (ent.d_type == DT_DIR) {
247                         /* case of directories */
248                         if (ent.d_name[0] == '.') {
249                                 if (len == 1)
250                                         continue;
251                                 if (ent.d_name[1] == '.' && len == 2)
252                                         continue;
253                         }
254                         adddirs(path, end+len);;
255                 } else if (ent.d_type == DT_REG) {
256                         /* case of files */
257                         if (!strstr(ent.d_name, ".so"))
258                                 continue;
259                         afb_api_so_add_plugin(path);
260                 }
261         }
262         closedir(dir);
263         return 0;
264 }
265
266 int afb_api_so_add_directory(const char *path)
267 {
268         size_t length;
269         char buffer[PATH_MAX];
270
271         length = strlen(path);
272         if (length >= sizeof(buffer)) {
273                 ERROR("path too long %lu [%.99s...]", (unsigned long)length, path);
274                 return -1;
275         }
276
277         memcpy(buffer, path, length + 1);
278         return adddirs(buffer, length);
279 }
280
281 int afb_api_so_add_path(const char *path)
282 {
283         struct stat st;
284         int rc;
285
286         rc = stat(path, &st);
287         if (rc < 0)
288                 ERROR("Invalid plugin path [%s]: %m", path);
289         else if (S_ISDIR(st.st_mode))
290                 rc = afb_api_so_add_directory(path);
291         else if (strstr(path, ".so"))
292                 rc = afb_api_so_add_plugin(path);
293         else
294                 INFO("not a plugin [%s], skipped", path);
295         return rc;
296 }
297
298 int afb_api_so_add_pathset(const char *pathset)
299 {
300         static char sep[] = ":";
301         char *ps, *p;
302
303         ps = strdupa(pathset);
304         for (;;) {
305                 p = strsep(&ps, sep);
306                 if (!p)
307                         return 0;
308                 afb_api_so_add_path(p);
309         };
310 }
311