Bindings V2: Remove explicit references to daemon/service
[src/app-framework-binder.git] / src / afb-api-so.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
20 #include <stdio.h>
21 #include <dlfcn.h>
22 #include <string.h>
23 #include <dirent.h>
24 #include <errno.h>
25 #include <sys/stat.h>
26
27 #include "afb-api-so.h"
28 #include "afb-api-so-v1.h"
29 #include "afb-api-so-v2.h"
30 #include "verbose.h"
31
32 static int load_binding(const char *path, int force, struct afb_apiset *apiset)
33 {
34         int rc;
35         void *handle;
36
37         // This is a loadable library let's check if it's a binding
38         rc = -!!force;
39         handle = dlopen(path, RTLD_NOW | RTLD_LOCAL);
40         if (handle == NULL) {
41                 if (force)
42                         ERROR("binding [%s] not loadable: %s", path, dlerror());
43                 else
44                         INFO("binding [%s] not loadable: %s", path, dlerror());
45                 goto error;
46         }
47
48         /* try the version 2 */
49         rc = afb_api_so_v2_add(path, handle, apiset);
50         if (rc < 0) {
51                 /* error when loading a valid v2 binding */
52                 goto error2;
53         }
54         if (rc)
55                 return 0; /* yes version 2 */
56
57         /* try the version 1 */
58         rc = afb_api_so_v1_add(path, handle, apiset);
59         if (rc < 0) {
60                 /* error when loading a valid v1 binding */
61                 goto error2;
62         }
63         if (rc)
64                 return 0; /* yes version 1 */
65
66         /* not a valid binding */
67         if (force)
68                 ERROR("binding [%s] is not an AFB binding", path);
69         else
70                 INFO("binding [%s] is not an AFB binding", path);
71
72 error2:
73         dlclose(handle);
74 error:
75         return rc;
76 }
77
78
79 int afb_api_so_add_binding(const char *path, struct afb_apiset *apiset)
80 {
81         return load_binding(path, 1, apiset);
82 }
83
84 static int adddirs(char path[PATH_MAX], size_t end, struct afb_apiset *apiset)
85 {
86         DIR *dir;
87         struct dirent *dent;
88         size_t len;
89
90         /* open the DIR now */
91         dir = opendir(path);
92         if (dir == NULL) {
93                 ERROR("can't scan binding directory %s, %m", path);
94                 return -1;
95         }
96         INFO("Scanning dir=[%s] for bindings", path);
97
98         /* scan each entry */
99         if (end)
100                 path[end++] = '/';
101         for (;;) {
102                 errno = 0;
103                 dent = readdir(dir);
104                 if (dent == NULL) {
105                         if (errno != 0)
106                                 ERROR("read error while scanning directory %.*s: %m", (int)(end - 1), path);
107                         break;
108                 }
109
110                 len = strlen(dent->d_name);
111                 if (len + end >= PATH_MAX) {
112                         ERROR("path too long while scanning bindings for %s", dent->d_name);
113                         continue;
114                 }
115                 if (dent->d_type == DT_DIR) {
116                         /* case of directories */
117                         if (dent->d_name[0] == '.') {
118                                 if (len == 1)
119                                         continue;
120                                 if (dent->d_name[1] == '.' && len == 2)
121                                         continue;
122                         }
123                         memcpy(&path[end], dent->d_name, len+1);
124                         adddirs(path, end+len, apiset);
125                 } else if (dent->d_type == DT_REG) {
126                         /* case of files */
127                         if (memcmp(&dent->d_name[len - 3], ".so", 4))
128                                 continue;
129                         memcpy(&path[end], dent->d_name, len+1);
130                         if (load_binding(path, 0, apiset) < 0)
131                                 return -1;
132                 }
133         }
134         closedir(dir);
135         return 0;
136 }
137
138 int afb_api_so_add_directory(const char *path, struct afb_apiset *apiset)
139 {
140         size_t length;
141         char buffer[PATH_MAX];
142
143         length = strlen(path);
144         if (length >= sizeof(buffer)) {
145                 ERROR("path too long %lu [%.99s...]", (unsigned long)length, path);
146                 return -1;
147         }
148
149         memcpy(buffer, path, length + 1);
150         return adddirs(buffer, length, apiset);
151 }
152
153 int afb_api_so_add_path(const char *path, struct afb_apiset *apiset)
154 {
155         struct stat st;
156         int rc;
157
158         rc = stat(path, &st);
159         if (rc < 0)
160                 ERROR("Invalid binding path [%s]: %m", path);
161         else if (S_ISDIR(st.st_mode))
162                 rc = afb_api_so_add_directory(path, apiset);
163         else if (strstr(path, ".so"))
164                 rc = load_binding(path, 0, apiset);
165         else
166                 INFO("not a binding [%s], skipped", path);
167         return rc;
168 }
169
170 int afb_api_so_add_pathset(const char *pathset, struct afb_apiset *apiset)
171 {
172         static char sep[] = ":";
173         char *ps, *p;
174
175         ps = strdupa(pathset);
176         for (;;) {
177                 p = strsep(&ps, sep);
178                 if (!p)
179                         return 0;
180                 if (afb_api_so_add_path(p, apiset) < 0)
181                         return -1;
182         }
183 }
184