Visibility hidden by default
[babeltrace.git] / src / lib / plugin / plugin.c
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
5 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 */
7
8 #define BT_LOG_TAG "LIB/PLUGIN"
9 #include "lib/logging.h"
10
11 #include "common/assert.h"
12 #include "lib/assert-cond.h"
13 #include "common/macros.h"
14 #include "compat/compiler.h"
15 #include "compat/limits.h"
16 #include "common/common.h"
17 #include <babeltrace2/plugin/plugin-loading.h>
18 #include <babeltrace2/graph/component-class.h>
19 #include <babeltrace2/error-reporting.h>
20 #include "lib/graph/component-class.h"
21 #include <babeltrace2/types.h>
22 #include <glib.h>
23 #include <unistd.h>
24 #include <stdbool.h>
25 #include <stdlib.h>
26 #include <stdint.h>
27 #include <inttypes.h>
28 #include <sys/stat.h>
29 #include <ftw.h>
30 #include <pthread.h>
31
32 #include "plugin.h"
33 #include "plugin-so.h"
34 #include "lib/func-status.h"
35
36 #define PYTHON_PLUGIN_PROVIDER_FILENAME "babeltrace2-python-plugin-provider." G_MODULE_SUFFIX
37 #define PYTHON_PLUGIN_PROVIDER_DIR BABELTRACE_PLUGIN_PROVIDERS_DIR
38 #define PYTHON_PLUGIN_PROVIDER_SYM_NAME bt_plugin_python_create_all_from_file
39 #define PYTHON_PLUGIN_PROVIDER_SYM_NAME_STR G_STRINGIFY(PYTHON_PLUGIN_PROVIDER_SYM_NAME)
40
41 #define APPEND_ALL_FROM_DIR_NFDOPEN_MAX 8
42
43 /* Declare here to make sure definition in both ifdef branches are in sync. */
44 static
45 int init_python_plugin_provider(void);
46 typedef int (*create_all_from_file_sym_type)(
47 const char *path,
48 bool fail_on_load_error,
49 struct bt_plugin_set **plugin_set_out);
50
51 #ifdef BT_BUILT_IN_PYTHON_PLUGIN_SUPPORT
52 #include <plugin/python-plugin-provider.h>
53
54 static
55 create_all_from_file_sym_type
56 bt_plugin_python_create_all_from_file_sym =
57 bt_plugin_python_create_all_from_file;
58
59 static
60 int init_python_plugin_provider(void)
61 {
62 }
63 #else /* BT_BUILT_IN_PYTHON_PLUGIN_SUPPORT */
64 static GModule *python_plugin_provider_module;
65
66 static
67 create_all_from_file_sym_type bt_plugin_python_create_all_from_file_sym;
68
69 static
70 int init_python_plugin_provider(void) {
71 int status = BT_FUNC_STATUS_OK;
72 const char *provider_dir_envvar;
73 static const char * const provider_dir_envvar_name = "LIBBABELTRACE2_PLUGIN_PROVIDER_DIR";
74 char *provider_path = NULL;
75
76 if (bt_plugin_python_create_all_from_file_sym) {
77 goto end;
78 }
79
80 BT_LOGI_STR("Loading Python plugin provider module.");
81
82 provider_dir_envvar = getenv(provider_dir_envvar_name);
83 if (provider_dir_envvar) {
84 provider_path = g_build_filename(provider_dir_envvar,
85 PYTHON_PLUGIN_PROVIDER_FILENAME, NULL);
86 BT_LOGI("Using `%s` environment variable to find the Python "
87 "plugin provider: path=\"%s\"", provider_dir_envvar_name,
88 provider_path);
89 } else {
90 provider_path = g_build_filename(PYTHON_PLUGIN_PROVIDER_DIR,
91 PYTHON_PLUGIN_PROVIDER_FILENAME, NULL);
92 BT_LOGI("Using default path (`%s` environment variable is not "
93 "set) to find the Python plugin provider: path=\"%s\"",
94 provider_dir_envvar_name, provider_path);
95 }
96
97 python_plugin_provider_module = g_module_open(provider_path, 0);
98 if (!python_plugin_provider_module) {
99 /*
100 * This is not an error. The whole point of having an
101 * external Python plugin provider is that it can be
102 * missing and the Babeltrace library still works.
103 */
104 BT_LOGI("Cannot open `%s`: %s: continuing without Python plugin support.",
105 provider_path, g_module_error());
106 goto end;
107 }
108
109 if (!g_module_symbol(python_plugin_provider_module,
110 PYTHON_PLUGIN_PROVIDER_SYM_NAME_STR,
111 (gpointer) &bt_plugin_python_create_all_from_file_sym)) {
112 /*
113 * This is an error because, since we found the Python
114 * plugin provider shared object, we expect this symbol
115 * to exist.
116 */
117 BT_LIB_LOGE_APPEND_CAUSE(
118 "Cannot find the Python plugin provider loading symbol: "
119 "%s: continuing without Python plugin support: "
120 "file=\"%s\", symbol=\"%s\"",
121 g_module_error(),
122 provider_path,
123 PYTHON_PLUGIN_PROVIDER_SYM_NAME_STR);
124 status = BT_FUNC_STATUS_ERROR;
125 goto end;
126 }
127
128 BT_LOGI("Loaded Python plugin provider module: addr=%p",
129 python_plugin_provider_module);
130
131 end:
132 g_free(provider_path);
133
134 return status;
135 }
136
137 __attribute__((destructor)) static
138 void fini_python_plugin_provider(void) {
139 if (python_plugin_provider_module) {
140 BT_LOGI("Unloading Python plugin provider module.");
141
142 if (!g_module_close(python_plugin_provider_module)) {
143 /*
144 * This occurs when the library is finalized: do
145 * NOT append an error cause.
146 */
147 BT_LOGE("Failed to close the Python plugin provider module: %s.",
148 g_module_error());
149 }
150
151 python_plugin_provider_module = NULL;
152 }
153 }
154 #endif
155
156 BT_EXPORT
157 uint64_t bt_plugin_set_get_plugin_count(const struct bt_plugin_set *plugin_set)
158 {
159 BT_ASSERT_PRE_DEV_PLUGIN_SET_NON_NULL(plugin_set);
160 return (uint64_t) plugin_set->plugins->len;
161 }
162
163 BT_EXPORT
164 const struct bt_plugin *bt_plugin_set_borrow_plugin_by_index_const(
165 const struct bt_plugin_set *plugin_set, uint64_t index)
166 {
167 BT_ASSERT_PRE_DEV_PLUGIN_SET_NON_NULL(plugin_set);
168 BT_ASSERT_PRE_DEV_VALID_INDEX(index, plugin_set->plugins->len);
169 return g_ptr_array_index(plugin_set->plugins, index);
170 }
171
172 BT_EXPORT
173 enum bt_plugin_find_all_from_static_status bt_plugin_find_all_from_static(
174 bt_bool fail_on_load_error,
175 const struct bt_plugin_set **plugin_set_out)
176 {
177 BT_ASSERT_PRE_NO_ERROR();
178
179 /* bt_plugin_so_create_all_from_static() logs errors */
180 return bt_plugin_so_create_all_from_static(fail_on_load_error,
181 (void *) plugin_set_out);
182 }
183
184 BT_EXPORT
185 enum bt_plugin_find_all_from_file_status bt_plugin_find_all_from_file(
186 const char *path, bt_bool fail_on_load_error,
187 const struct bt_plugin_set **plugin_set_out)
188 {
189 enum bt_plugin_find_all_from_file_status status;
190
191 BT_ASSERT_PRE_NO_ERROR();
192 BT_ASSERT_PRE_NON_NULL("path", path, "Path");
193 BT_ASSERT_PRE_PLUGIN_SET_OUT_NON_NULL(path);
194 BT_LOGI("Creating plugins from file: path=\"%s\"", path);
195
196 /* Try shared object plugins */
197 status = bt_plugin_so_create_all_from_file(path, fail_on_load_error,
198 (void *) plugin_set_out);
199 if (status == BT_FUNC_STATUS_OK) {
200 BT_ASSERT(*plugin_set_out);
201 BT_ASSERT((*plugin_set_out)->plugins->len > 0);
202 goto end;
203 } else if (status < 0) {
204 BT_ASSERT(!*plugin_set_out);
205 goto end;
206 }
207
208 BT_ASSERT(status == BT_FUNC_STATUS_NOT_FOUND);
209 BT_ASSERT(!*plugin_set_out);
210
211 /* Try Python plugins if support is available */
212 status = init_python_plugin_provider();
213 if (status < 0) {
214 /* init_python_plugin_provider() logs errors */
215 goto end;
216 }
217
218 BT_ASSERT(status == BT_FUNC_STATUS_OK);
219 status = BT_FUNC_STATUS_NOT_FOUND;
220
221 if (bt_plugin_python_create_all_from_file_sym) {
222 /* Python plugin provider exists */
223 status = bt_plugin_python_create_all_from_file_sym(path,
224 fail_on_load_error, (void *) plugin_set_out);
225 if (status == BT_FUNC_STATUS_OK) {
226 BT_ASSERT(*plugin_set_out);
227 BT_ASSERT((*plugin_set_out)->plugins->len > 0);
228 goto end;
229 } else if (status < 0) {
230 /*
231 * bt_plugin_python_create_all_from_file_sym()
232 * handles `fail_on_load_error` itself, so this
233 * is a "real" error.
234 */
235 BT_ASSERT(!*plugin_set_out);
236 goto end;
237 }
238
239 BT_ASSERT(status == BT_FUNC_STATUS_NOT_FOUND);
240 BT_ASSERT(!*plugin_set_out);
241 }
242
243 end:
244 if (status == BT_FUNC_STATUS_OK) {
245 BT_LOGI("Created %u plugins from file: "
246 "path=\"%s\", count=%u, plugin-set-addr=%p",
247 (*plugin_set_out)->plugins->len, path,
248 (*plugin_set_out)->plugins->len,
249 *plugin_set_out);
250 } else if (status == BT_FUNC_STATUS_NOT_FOUND) {
251 BT_LOGI("Found no plugins in file: path=\"%s\"", path);
252 }
253
254 return status;
255 }
256
257 static
258 void destroy_gstring(void *data)
259 {
260 g_string_free(data, TRUE);
261 }
262
263 BT_EXPORT
264 enum bt_plugin_find_all_status bt_plugin_find_all(bt_bool find_in_std_env_var,
265 bt_bool find_in_user_dir, bt_bool find_in_sys_dir,
266 bt_bool find_in_static, bt_bool fail_on_load_error,
267 const struct bt_plugin_set **plugin_set_out)
268 {
269 char *home_plugin_dir = NULL;
270 const struct bt_plugin_set *plugin_set = NULL;
271 GPtrArray *dirs = NULL;
272 int ret;
273 int status = BT_FUNC_STATUS_OK;
274 uint64_t dir_i, plugin_i;
275
276 BT_ASSERT_PRE_NO_ERROR();
277 BT_ASSERT_PRE_PLUGIN_SET_OUT_NON_NULL(plugin_set_out);
278 BT_LOGI("Finding all plugins in standard directories and built-in plugins: "
279 "find-in-std-env-var=%d, find-in-user-dir=%d, "
280 "find-in-sys-dir=%d, find-in-static=%d",
281 find_in_std_env_var, find_in_user_dir, find_in_sys_dir,
282 find_in_static);
283 dirs = g_ptr_array_new_with_free_func((GDestroyNotify) destroy_gstring);
284 if (!dirs) {
285 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GPtrArray.");
286 status = BT_FUNC_STATUS_MEMORY_ERROR;
287 goto end;
288 }
289
290 *plugin_set_out = bt_plugin_set_create();
291 if (!*plugin_set_out) {
292 BT_LIB_LOGE_APPEND_CAUSE("Cannot create empty plugin set.");
293 status = BT_FUNC_STATUS_MEMORY_ERROR;
294 goto end;
295 }
296
297 /*
298 * Search order is:
299 *
300 * 1. `BABELTRACE_PLUGIN_PATH` environment variable
301 * (colon-separated list of directories)
302 * 2. `~/.local/lib/babeltrace2/plugins`
303 * 3. Default system directory for Babeltrace plugins, usually
304 * `/usr/lib/babeltrace2/plugins` or
305 * `/usr/local/lib/babeltrace2/plugins` if installed locally
306 * 4. Built-in plugins (static)
307 *
308 * Directories are searched non-recursively.
309 */
310 if (find_in_std_env_var) {
311 const char *envvar = getenv("BABELTRACE_PLUGIN_PATH");
312
313 if (envvar) {
314 ret = bt_common_append_plugin_path_dirs(envvar, dirs);
315 if (ret) {
316 BT_LIB_LOGE_APPEND_CAUSE(
317 "Failed to append plugin path to array of directories.");
318 status = BT_FUNC_STATUS_MEMORY_ERROR;
319 goto end;
320 }
321 }
322 }
323
324 if (find_in_user_dir) {
325 home_plugin_dir = bt_common_get_home_plugin_path(
326 BT_LOG_OUTPUT_LEVEL);
327 if (home_plugin_dir) {
328 GString *home_plugin_dir_str = g_string_new(
329 home_plugin_dir);
330
331 if (!home_plugin_dir_str) {
332 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GString.");
333 status = BT_FUNC_STATUS_MEMORY_ERROR;
334 goto end;
335 }
336
337 g_ptr_array_add(dirs, home_plugin_dir_str);
338 }
339 }
340
341 if (find_in_sys_dir) {
342 const char *system_plugin_dir =
343 bt_common_get_system_plugin_path();
344
345 if (system_plugin_dir) {
346 GString *system_plugin_dir_str =
347 g_string_new(system_plugin_dir);
348
349 if (!system_plugin_dir_str) {
350 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GString.");
351 status = BT_FUNC_STATUS_MEMORY_ERROR;
352 goto end;
353 }
354
355 g_ptr_array_add(dirs, system_plugin_dir_str);
356 }
357 }
358
359 for (dir_i = 0; dir_i < dirs->len; dir_i++) {
360 GString *dir = dirs->pdata[dir_i];
361
362 BT_OBJECT_PUT_REF_AND_RESET(plugin_set);
363
364 /*
365 * Skip this if the directory does not exist because
366 * bt_plugin_find_all_from_dir() would log a warning.
367 */
368 if (!g_file_test(dir->str, G_FILE_TEST_IS_DIR)) {
369 BT_LOGI("Skipping nonexistent directory path: "
370 "path=\"%s\"", dir->str);
371 continue;
372 }
373
374 /* bt_plugin_find_all_from_dir() logs details/errors */
375 status = bt_plugin_find_all_from_dir(dir->str, BT_FALSE,
376 fail_on_load_error, &plugin_set);
377 if (status < 0) {
378 BT_ASSERT(!plugin_set);
379 goto end;
380 } else if (status == BT_FUNC_STATUS_NOT_FOUND) {
381 BT_ASSERT(!plugin_set);
382 BT_LOGI("No plugins found in directory: path=\"%s\"",
383 dir->str);
384 continue;
385 }
386
387 BT_ASSERT(status == BT_FUNC_STATUS_OK);
388 BT_ASSERT(plugin_set);
389 BT_LOGI("Found plugins in directory: path=\"%s\", count=%u",
390 dir->str, plugin_set->plugins->len);
391
392 for (plugin_i = 0; plugin_i < plugin_set->plugins->len;
393 plugin_i++) {
394 bt_plugin_set_add_plugin((void *) *plugin_set_out,
395 plugin_set->plugins->pdata[plugin_i]);
396 }
397 }
398
399 if (find_in_static) {
400 BT_OBJECT_PUT_REF_AND_RESET(plugin_set);
401 status = bt_plugin_find_all_from_static(fail_on_load_error,
402 &plugin_set);
403 if (status < 0) {
404 BT_ASSERT(!plugin_set);
405 goto end;
406 } else if (status == BT_FUNC_STATUS_NOT_FOUND) {
407 BT_ASSERT(!plugin_set);
408 BT_LOGI_STR("No plugins found in built-in plugins.");
409 goto end;
410 }
411
412 BT_ASSERT(status == BT_FUNC_STATUS_OK);
413 BT_ASSERT(plugin_set);
414 BT_LOGI("Found built-in plugins: count=%u",
415 plugin_set->plugins->len);
416
417 for (plugin_i = 0; plugin_i < plugin_set->plugins->len;
418 plugin_i++) {
419 bt_plugin_set_add_plugin((void *) *plugin_set_out,
420 plugin_set->plugins->pdata[plugin_i]);
421 }
422 }
423
424 end:
425 free(home_plugin_dir);
426 bt_object_put_ref(plugin_set);
427
428 if (dirs) {
429 g_ptr_array_free(dirs, TRUE);
430 }
431
432 if (status < 0) {
433 BT_OBJECT_PUT_REF_AND_RESET(*plugin_set_out);
434 } else {
435 BT_ASSERT(*plugin_set_out);
436
437 if ((*plugin_set_out)->plugins->len > 0) {
438 BT_LOGI("Found plugins in standard directories and built-in plugins: "
439 "count=%u", (*plugin_set_out)->plugins->len);
440 status = BT_FUNC_STATUS_OK;
441 } else {
442 BT_LOGI_STR("No plugins found in standard directories and built-in plugins.");
443 status = BT_FUNC_STATUS_NOT_FOUND;
444 BT_OBJECT_PUT_REF_AND_RESET(*plugin_set_out);
445 }
446 }
447
448 return status;
449 }
450
451 BT_EXPORT
452 enum bt_plugin_find_status bt_plugin_find(const char *plugin_name,
453 bt_bool find_in_std_env_var, bt_bool find_in_user_dir,
454 bt_bool find_in_sys_dir, bt_bool find_in_static,
455 bt_bool fail_on_load_error, const struct bt_plugin **plugin_out)
456 {
457 enum bt_plugin_find_status status;
458 const struct bt_plugin_set *plugin_set = NULL;
459 uint64_t i;
460
461 BT_ASSERT_PRE_NO_ERROR();
462 BT_ASSERT_PRE_NAME_NON_NULL(plugin_name);
463 BT_ASSERT_PRE_PLUGIN_OUT_NON_NULL(plugin_out);
464 BT_LOGI("Finding named plugin in standard directories and built-in plugins: "
465 "name=\"%s\", find-in-std-env-var=%d, find-in-user-dir=%d, "
466 "find-in-sys-dir=%d, find-in-static=%d",
467 plugin_name, find_in_std_env_var, find_in_user_dir,
468 find_in_sys_dir, find_in_static);
469 status = (enum bt_plugin_find_status) bt_plugin_find_all(find_in_std_env_var, find_in_user_dir,
470 find_in_sys_dir, find_in_static, fail_on_load_error,
471 &plugin_set);
472 if (status != BT_FUNC_STATUS_OK) {
473 BT_ASSERT(!plugin_set);
474 goto end;
475 }
476
477 BT_ASSERT(plugin_set);
478
479 for (i = 0; i < plugin_set->plugins->len; i++) {
480 const struct bt_plugin *plugin = plugin_set->plugins->pdata[i];
481
482 if (strcmp(plugin->info.name->str, plugin_name) == 0) {
483 *plugin_out = plugin;
484 bt_object_get_ref_no_null_check(*plugin_out);
485 goto end;
486 }
487 }
488
489 status = BT_FUNC_STATUS_NOT_FOUND;
490
491 end:
492 if (status == BT_FUNC_STATUS_OK) {
493 BT_ASSERT(*plugin_out);
494 BT_LIB_LOGI("Found plugin in standard directories and built-in plugins: "
495 "%!+l", *plugin_out);
496 } else if (status == BT_FUNC_STATUS_NOT_FOUND) {
497 BT_LOGI("No plugin found in standard directories and built-in plugins: "
498 "name=\"%s\"", plugin_name);
499 }
500
501 bt_plugin_set_put_ref(plugin_set);
502
503 return status;
504 }
505
506 static struct {
507 pthread_mutex_t lock;
508 struct bt_plugin_set *plugin_set;
509 bool recurse;
510 bool fail_on_load_error;
511 int status;
512 } append_all_from_dir_info = {
513 .lock = PTHREAD_MUTEX_INITIALIZER
514 };
515
516 static
517 int nftw_append_all_from_dir(const char *file,
518 const struct stat *sb, int flag, struct FTW *s)
519 {
520 int ret = 0;
521 const char *name = file + s->base;
522
523 /* Check for recursion */
524 if (!append_all_from_dir_info.recurse && s->level > 1) {
525 goto end;
526 }
527
528 switch (flag) {
529 case FTW_F:
530 {
531 const struct bt_plugin_set *plugins_from_file = NULL;
532
533 if (name[0] == '.') {
534 /* Skip hidden files */
535 BT_LOGI("Skipping hidden file: path=\"%s\"", file);
536 goto end;
537 }
538
539 append_all_from_dir_info.status =
540 bt_plugin_find_all_from_file(file,
541 append_all_from_dir_info.fail_on_load_error,
542 &plugins_from_file);
543 if (append_all_from_dir_info.status == BT_FUNC_STATUS_OK) {
544 size_t j;
545
546 BT_ASSERT(plugins_from_file);
547
548 for (j = 0; j < plugins_from_file->plugins->len; j++) {
549 struct bt_plugin *plugin =
550 g_ptr_array_index(plugins_from_file->plugins, j);
551
552 BT_LIB_LOGI("Adding plugin to plugin set: "
553 "plugin-path=\"%s\", %![plugin-]+l",
554 file, plugin);
555 bt_plugin_set_add_plugin(
556 append_all_from_dir_info.plugin_set,
557 plugin);
558 }
559
560 bt_object_put_ref(plugins_from_file);
561 goto end;
562 } else if (append_all_from_dir_info.status < 0) {
563 /* bt_plugin_find_all_from_file() logs errors */
564 BT_ASSERT(!plugins_from_file);
565 ret = -1;
566 goto end;
567 }
568
569 /*
570 * Not found in this file: this is no an error; continue
571 * walking the directories.
572 */
573 BT_ASSERT(!plugins_from_file);
574 BT_ASSERT(append_all_from_dir_info.status ==
575 BT_FUNC_STATUS_NOT_FOUND);
576 break;
577 }
578 case FTW_DNR:
579 /* Continue to next file / directory. */
580 BT_LOGI("Cannot enter directory: continuing: path=\"%s\"", file);
581 break;
582 case FTW_NS:
583 /* Continue to next file / directory. */
584 BT_LOGI("Cannot get file information: continuing: path=\"%s\"", file);
585 break;
586 }
587
588 end:
589 return ret;
590 }
591
592 static
593 int bt_plugin_create_append_all_from_dir(struct bt_plugin_set *plugin_set,
594 const char *path, bt_bool recurse, bt_bool fail_on_load_error)
595 {
596 int nftw_flags = FTW_PHYS;
597 int ret;
598 int status;
599 struct stat sb;
600
601 BT_ASSERT(plugin_set);
602 BT_ASSERT(path);
603 BT_ASSERT(strlen(path) < PATH_MAX);
604
605 /*
606 * Make sure that path exists and is accessible.
607 * This is necessary since Cygwin implementation of nftw() is not POSIX
608 * compliant. Cygwin nftw() implementation does not fail on non-existent
609 * path with ENOENT. Instead, it flags the directory as FTW_NS. FTW_NS during
610 * nftw_append_all_from_dir is not treated as an error since we are
611 * traversing the tree for plugin discovery.
612 */
613 if (stat(path, &sb)) {
614 BT_LOGW_ERRNO("Cannot open directory",
615 ": path=\"%s\", recurse=%d",
616 path, recurse);
617 (void) BT_CURRENT_THREAD_ERROR_APPEND_CAUSE_FROM_UNKNOWN(
618 BT_LIB_LOG_LIBBABELTRACE2_NAME,
619 "Cannot open directory: path=\"%s\", recurse=%d",
620 path, recurse);
621 status = BT_FUNC_STATUS_ERROR;
622 goto end;
623 }
624
625 pthread_mutex_lock(&append_all_from_dir_info.lock);
626 append_all_from_dir_info.plugin_set = plugin_set;
627 append_all_from_dir_info.recurse = recurse;
628 append_all_from_dir_info.status = BT_FUNC_STATUS_OK;
629 append_all_from_dir_info.fail_on_load_error = fail_on_load_error;
630 ret = nftw(path, nftw_append_all_from_dir,
631 APPEND_ALL_FROM_DIR_NFDOPEN_MAX, nftw_flags);
632 append_all_from_dir_info.plugin_set = NULL;
633 status = append_all_from_dir_info.status;
634 pthread_mutex_unlock(&append_all_from_dir_info.lock);
635 if (ret) {
636 BT_LIB_LOGW_APPEND_CAUSE("Failed to walk directory",
637 ": path=\"%s\", recurse=%d",
638 path, recurse);
639 status = BT_FUNC_STATUS_ERROR;
640 goto end;
641 }
642
643 if (status == BT_FUNC_STATUS_NOT_FOUND) {
644 /*
645 * We're just appending in this function; even if
646 * nothing was found, it's still okay from the caller's
647 * perspective.
648 */
649 status = BT_FUNC_STATUS_OK;
650 }
651
652 end:
653 return status;
654 }
655
656 BT_EXPORT
657 enum bt_plugin_find_all_from_dir_status bt_plugin_find_all_from_dir(
658 const char *path, bt_bool recurse, bt_bool fail_on_load_error,
659 const struct bt_plugin_set **plugin_set_out)
660 {
661 enum bt_plugin_find_all_from_dir_status status =
662 BT_FUNC_STATUS_OK;
663
664 BT_ASSERT_PRE_NO_ERROR();
665 BT_ASSERT_PRE_PLUGIN_SET_OUT_NON_NULL(plugin_set_out);
666 BT_LOGI("Creating all plugins in directory: path=\"%s\", recurse=%d",
667 path, recurse);
668 *plugin_set_out = bt_plugin_set_create();
669 if (!*plugin_set_out) {
670 BT_LIB_LOGE_APPEND_CAUSE("Cannot create empty plugin set.");
671 status = BT_FUNC_STATUS_MEMORY_ERROR;
672 goto error;
673 }
674
675 /*
676 * Append found plugins to array (never returns
677 * `BT_FUNC_STATUS_NOT_FOUND`)
678 */
679 status = bt_plugin_create_append_all_from_dir((void *) *plugin_set_out,
680 path, recurse, fail_on_load_error);
681 if (status < 0) {
682 /*
683 * bt_plugin_create_append_all_from_dir() handles
684 * `fail_on_load_error`, so this is a "real" error.
685 */
686 BT_LIB_LOGE_APPEND_CAUSE(
687 "Cannot append plugins found in directory: "
688 "path=\"%s\", status=%s",
689 path, bt_common_func_status_string(status));
690 goto error;
691 }
692
693 BT_ASSERT(status == BT_FUNC_STATUS_OK);
694
695 if ((*plugin_set_out)->plugins->len == 0) {
696 /* Nothing was appended: not found */
697 BT_LOGI("No plugins found in directory: path=\"%s\"", path);
698 status = BT_FUNC_STATUS_NOT_FOUND;
699 goto error;
700 }
701
702 BT_LOGI("Created %u plugins from directory: count=%u, path=\"%s\"",
703 (*plugin_set_out)->plugins->len,
704 (*plugin_set_out)->plugins->len, path);
705 goto end;
706
707 error:
708 BT_ASSERT(status != BT_FUNC_STATUS_OK);
709 BT_OBJECT_PUT_REF_AND_RESET(*plugin_set_out);
710
711 end:
712 return status;
713 }
714
715 BT_EXPORT
716 const char *bt_plugin_get_name(const struct bt_plugin *plugin)
717 {
718 BT_ASSERT_PRE_DEV_PLUGIN_NON_NULL(plugin);
719 return plugin->info.name_set ? plugin->info.name->str : NULL;
720 }
721
722 BT_EXPORT
723 const char *bt_plugin_get_author(const struct bt_plugin *plugin)
724 {
725 BT_ASSERT_PRE_DEV_PLUGIN_NON_NULL(plugin);
726 return plugin->info.author_set ? plugin->info.author->str : NULL;
727 }
728
729 BT_EXPORT
730 const char *bt_plugin_get_license(const struct bt_plugin *plugin)
731 {
732 BT_ASSERT_PRE_DEV_PLUGIN_NON_NULL(plugin);
733 return plugin->info.license_set ? plugin->info.license->str : NULL;
734 }
735
736 BT_EXPORT
737 const char *bt_plugin_get_path(const struct bt_plugin *plugin)
738 {
739 BT_ASSERT_PRE_DEV_PLUGIN_NON_NULL(plugin);
740 return plugin->info.path_set ? plugin->info.path->str : NULL;
741 }
742
743 BT_EXPORT
744 const char *bt_plugin_get_description(const struct bt_plugin *plugin)
745 {
746 BT_ASSERT_PRE_DEV_PLUGIN_NON_NULL(plugin);
747 return plugin->info.description_set ?
748 plugin->info.description->str : NULL;
749 }
750
751 BT_EXPORT
752 enum bt_property_availability bt_plugin_get_version(const struct bt_plugin *plugin,
753 unsigned int *major, unsigned int *minor, unsigned int *patch,
754 const char **extra)
755 {
756 enum bt_property_availability avail =
757 BT_PROPERTY_AVAILABILITY_AVAILABLE;
758
759 BT_ASSERT_PRE_DEV_PLUGIN_NON_NULL(plugin);
760
761 if (!plugin->info.version_set) {
762 BT_LIB_LOGD("Plugin's version is not set: %!+l", plugin);
763 avail = BT_PROPERTY_AVAILABILITY_NOT_AVAILABLE;
764 goto end;
765 }
766
767 if (major) {
768 *major = plugin->info.version.major;
769 }
770
771 if (minor) {
772 *minor = plugin->info.version.minor;
773 }
774
775 if (patch) {
776 *patch = plugin->info.version.patch;
777 }
778
779 if (extra) {
780 *extra = plugin->info.version.extra->str;
781 }
782
783 end:
784 return avail;
785 }
786
787 BT_EXPORT
788 uint64_t bt_plugin_get_source_component_class_count(const struct bt_plugin *plugin)
789 {
790 BT_ASSERT_PRE_DEV_PLUGIN_NON_NULL(plugin);
791 return (uint64_t) plugin->src_comp_classes->len;
792 }
793
794 BT_EXPORT
795 uint64_t bt_plugin_get_filter_component_class_count(const struct bt_plugin *plugin)
796 {
797 BT_ASSERT_PRE_DEV_PLUGIN_NON_NULL(plugin);
798 return (uint64_t) plugin->flt_comp_classes->len;
799 }
800
801 BT_EXPORT
802 uint64_t bt_plugin_get_sink_component_class_count(const struct bt_plugin *plugin)
803 {
804 BT_ASSERT_PRE_DEV_PLUGIN_NON_NULL(plugin);
805 return (uint64_t) plugin->sink_comp_classes->len;
806 }
807
808 static inline
809 struct bt_component_class *borrow_component_class_by_index(
810 const struct bt_plugin *plugin, GPtrArray *comp_classes,
811 uint64_t index)
812 {
813 BT_ASSERT_PRE_DEV_PLUGIN_NON_NULL(plugin);
814 BT_ASSERT_PRE_DEV_VALID_INDEX(index, comp_classes->len);
815 return g_ptr_array_index(comp_classes, index);
816 }
817
818 BT_EXPORT
819 const struct bt_component_class_source *
820 bt_plugin_borrow_source_component_class_by_index_const(
821 const struct bt_plugin *plugin, uint64_t index)
822 {
823 return (const void *) borrow_component_class_by_index(plugin,
824 plugin->src_comp_classes, index);
825 }
826
827 BT_EXPORT
828 const struct bt_component_class_filter *
829 bt_plugin_borrow_filter_component_class_by_index_const(
830 const struct bt_plugin *plugin, uint64_t index)
831 {
832 return (const void *) borrow_component_class_by_index(plugin,
833 plugin->flt_comp_classes, index);
834 }
835
836 BT_EXPORT
837 const struct bt_component_class_sink *
838 bt_plugin_borrow_sink_component_class_by_index_const(
839 const struct bt_plugin *plugin, uint64_t index)
840 {
841 return (const void *) borrow_component_class_by_index(plugin,
842 plugin->sink_comp_classes, index);
843 }
844
845 static inline
846 struct bt_component_class *borrow_component_class_by_name(
847 const struct bt_plugin *plugin, GPtrArray *comp_classes,
848 const char *name)
849 {
850 struct bt_component_class *comp_class = NULL;
851 size_t i;
852
853 BT_ASSERT_PRE_DEV_PLUGIN_NON_NULL(plugin);
854 BT_ASSERT_PRE_DEV_NAME_NON_NULL(name);
855
856 for (i = 0; i < comp_classes->len; i++) {
857 struct bt_component_class *comp_class_candidate =
858 g_ptr_array_index(comp_classes, i);
859 const char *comp_class_cand_name =
860 bt_component_class_get_name(comp_class_candidate);
861
862 BT_ASSERT_DBG(comp_class_cand_name);
863
864 if (strcmp(name, comp_class_cand_name) == 0) {
865 comp_class = comp_class_candidate;
866 break;
867 }
868 }
869
870 return comp_class;
871 }
872
873 BT_EXPORT
874 const struct bt_component_class_source *
875 bt_plugin_borrow_source_component_class_by_name_const(
876 const struct bt_plugin *plugin, const char *name)
877 {
878 return (const void *) borrow_component_class_by_name(plugin,
879 plugin->src_comp_classes, name);
880 }
881
882 BT_EXPORT
883 const struct bt_component_class_filter *
884 bt_plugin_borrow_filter_component_class_by_name_const(
885 const struct bt_plugin *plugin, const char *name)
886 {
887 return (const void *) borrow_component_class_by_name(plugin,
888 plugin->flt_comp_classes, name);
889 }
890
891 BT_EXPORT
892 const struct bt_component_class_sink *
893 bt_plugin_borrow_sink_component_class_by_name_const(
894 const struct bt_plugin *plugin, const char *name)
895 {
896 return (const void *) borrow_component_class_by_name(plugin,
897 plugin->sink_comp_classes, name);
898 }
899
900 BT_EXPORT
901 void bt_plugin_get_ref(const struct bt_plugin *plugin)
902 {
903 bt_object_get_ref(plugin);
904 }
905
906 BT_EXPORT
907 void bt_plugin_put_ref(const struct bt_plugin *plugin)
908 {
909 bt_object_put_ref(plugin);
910 }
911
912 BT_EXPORT
913 void bt_plugin_set_get_ref(const struct bt_plugin_set *plugin_set)
914 {
915 bt_object_get_ref(plugin_set);
916 }
917
918 BT_EXPORT
919 void bt_plugin_set_put_ref(const struct bt_plugin_set *plugin_set)
920 {
921 bt_object_put_ref(plugin_set);
922 }
This page took 0.049511 seconds and 4 git commands to generate.