Fix: plugin.c: leak of `bt_plugin_set`
[babeltrace.git] / src / lib / plugin / plugin-so.c
CommitLineData
55bb57e0 1/*
e2f7325d 2 * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
55bb57e0 3 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
55bb57e0
PP
4 *
5 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
350ad6c1 26#define BT_LOG_TAG "LIB/PLUGIN-SO"
c2d9d9cf 27#include "lib/logging.h"
3fe0bf43 28
578e048b
MJ
29#include "common/assert.h"
30#include "lib/assert-pre.h"
31#include "compat/compiler.h"
3fadfbc0 32#include <babeltrace2/plugin/plugin-dev.h>
578e048b 33#include "lib/graph/component-class.h"
3fadfbc0
MJ
34#include <babeltrace2/graph/component-class.h>
35#include <babeltrace2/graph/component-class-source.h>
36#include <babeltrace2/graph/component-class-filter.h>
37#include <babeltrace2/graph/component-class-sink.h>
38#include <babeltrace2/types.h>
578e048b 39#include "common/list.h"
55bb57e0 40#include <string.h>
0fbb9a9f 41#include <stdlib.h>
55bb57e0
PP
42#include <glib.h>
43#include <gmodule.h>
44
578e048b
MJ
45#include "plugin.h"
46#include "plugin-so.h"
d24d5663
PP
47#include "lib/func-status.h"
48#include "common/common.h"
578e048b 49
44a3451a 50#define NATIVE_PLUGIN_SUFFIX "." G_MODULE_SUFFIX
55bb57e0
PP
51#define NATIVE_PLUGIN_SUFFIX_LEN sizeof(NATIVE_PLUGIN_SUFFIX)
52#define LIBTOOL_PLUGIN_SUFFIX ".la"
53#define LIBTOOL_PLUGIN_SUFFIX_LEN sizeof(LIBTOOL_PLUGIN_SUFFIX)
54
91d81473 55#define PLUGIN_SUFFIX_LEN bt_max_t(size_t, sizeof(NATIVE_PLUGIN_SUFFIX), \
55bb57e0
PP
56 sizeof(LIBTOOL_PLUGIN_SUFFIX))
57
52238017 58BT_PLUGIN_MODULE();
55bb57e0
PP
59
60/*
bfa9a4be
MD
61 * This list, global to the library, keeps all component classes that
62 * have a reference to their shared library handles. It allows iteration
63 * on all component classes still present when the destructor executes
64 * to release the shared library handle references they might still have.
55bb57e0 65 *
bfa9a4be 66 * The list items are the component classes created with
55bb57e0
PP
67 * bt_plugin_add_component_class(). They keep the shared library handle
68 * object created by their plugin alive so that the plugin's code is
69 * not discarded when it could still be in use by living components
70 * created from those component classes:
71 *
bfa9a4be 72 * [component] --ref-> [component class]-> [shlib handle]
55bb57e0 73 *
bfa9a4be 74 * It allows this use-case:
55bb57e0 75 *
c8db3219 76 * my_plugins = bt_plugin_find_all_from_file("/path/to/my-plugin.so");
55bb57e0
PP
77 * // instantiate components from a plugin's component classes
78 * // put plugins and free my_plugins here
79 * // user code of instantiated components still exists
80 *
bfa9a4be
MD
81 * An entry is removed from this list when a component class is
82 * destroyed thanks to a custom destroy listener. When the entry is
83 * removed, the entry is removed from the list, and we release the
84 * reference on the shlib handle. Assuming the original plugin object
85 * which contained some component classes is put first, when the last
86 * component class is removed from this list, the shared library handle
87 * object's reference count falls to zero and the shared library is
88 * finally closed.
55bb57e0 89 */
bfa9a4be 90
55bb57e0 91static
bfa9a4be 92BT_LIST_HEAD(component_class_list);
55bb57e0
PP
93
94__attribute__((destructor)) static
bfa9a4be
MD
95void fini_comp_class_list(void)
96{
97 struct bt_component_class *comp_class, *tmp;
98
99 bt_list_for_each_entry_safe(comp_class, tmp, &component_class_list, node) {
100 bt_list_del(&comp_class->node);
65300d60 101 BT_OBJECT_PUT_REF_AND_RESET(comp_class->so_handle);
55bb57e0 102 }
d94d92ac 103
bfa9a4be 104 BT_LOGD_STR("Released references from all component classes to shared library handles.");
55bb57e0
PP
105}
106
107static
108void bt_plugin_so_shared_lib_handle_destroy(struct bt_object *obj)
109{
110 struct bt_plugin_so_shared_lib_handle *shared_lib_handle;
111
f6ccaed9 112 BT_ASSERT(obj);
55bb57e0
PP
113 shared_lib_handle = container_of(obj,
114 struct bt_plugin_so_shared_lib_handle, base);
3fe0bf43
PP
115 const char *path = shared_lib_handle->path ?
116 shared_lib_handle->path->str : NULL;
117
3f7d4d90 118 BT_LOGI("Destroying shared library handle: addr=%p, path=\"%s\"",
3fe0bf43 119 shared_lib_handle, path);
55bb57e0
PP
120
121 if (shared_lib_handle->init_called && shared_lib_handle->exit) {
3fe0bf43 122 BT_LOGD_STR("Calling user's plugin exit function.");
9724cce9
PP
123 shared_lib_handle->exit();
124 BT_LOGD_STR("User function returned.");
55bb57e0
PP
125 }
126
127 if (shared_lib_handle->module) {
21e6ffa5 128#ifdef BT_DEBUG_MODE
f1447220
PP
129 /*
130 * Valgrind shows incomplete stack traces when
131 * dynamically loaded libraries are closed before it
16b7b5e7 132 * finishes. Use the LIBBABELTRACE2_NO_DLCLOSE in a debug
f1447220
PP
133 * build to avoid this.
134 */
16b7b5e7 135 const char *var = getenv("LIBBABELTRACE2_NO_DLCLOSE");
f1447220
PP
136
137 if (!var || strcmp(var, "1") != 0) {
138#endif
3f7d4d90 139 BT_LOGI("Closing GModule: path=\"%s\"", path);
3fe0bf43 140
f1447220 141 if (!g_module_close(shared_lib_handle->module)) {
870631a2
PP
142 /*
143 * Just log here: we're in a destructor,
144 * so we cannot append an error cause
145 * (there's no returned status).
146 */
3fe0bf43
PP
147 BT_LOGE("Cannot close GModule: %s: path=\"%s\"",
148 g_module_error(), path);
f1447220 149 }
db5504f9
PP
150
151 shared_lib_handle->module = NULL;
21e6ffa5 152#ifdef BT_DEBUG_MODE
3fe0bf43 153 } else {
16b7b5e7 154 BT_LOGI("Not closing GModule because `LIBBABELTRACE2_NO_DLCLOSE=1`: "
3fe0bf43 155 "path=\"%s\"", path);
55bb57e0 156 }
f1447220 157#endif
55bb57e0
PP
158 }
159
160 if (shared_lib_handle->path) {
161 g_string_free(shared_lib_handle->path, TRUE);
db5504f9 162 shared_lib_handle->path = NULL;
55bb57e0
PP
163 }
164
165 g_free(shared_lib_handle);
166}
167
168static
d24d5663 169int bt_plugin_so_shared_lib_handle_create(
9736d991
PP
170 const char *path,
171 struct bt_plugin_so_shared_lib_handle **shared_lib_handle)
55bb57e0 172{
d24d5663 173 int status = BT_FUNC_STATUS_OK;
55bb57e0 174
9736d991 175 BT_ASSERT(shared_lib_handle);
3f7d4d90 176 BT_LOGI("Creating shared library handle: path=\"%s\"", path);
9736d991
PP
177 *shared_lib_handle = g_new0(struct bt_plugin_so_shared_lib_handle, 1);
178 if (!*shared_lib_handle) {
870631a2 179 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one shared library handle.");
d24d5663 180 status = BT_FUNC_STATUS_MEMORY_ERROR;
9736d991 181 goto end;
55bb57e0
PP
182 }
183
9736d991 184 bt_object_init_shared(&(*shared_lib_handle)->base,
3fea54f6 185 bt_plugin_so_shared_lib_handle_destroy);
55bb57e0
PP
186
187 if (!path) {
188 goto end;
189 }
190
9736d991
PP
191 (*shared_lib_handle)->path = g_string_new(path);
192 if (!(*shared_lib_handle)->path) {
870631a2 193 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GString.");
d24d5663 194 status = BT_FUNC_STATUS_MEMORY_ERROR;
9736d991 195 goto end;
55bb57e0
PP
196 }
197
9736d991
PP
198 (*shared_lib_handle)->module = g_module_open(path, G_MODULE_BIND_LOCAL);
199 if (!(*shared_lib_handle)->module) {
50ad9320 200 /*
3f7d4d90 201 * INFO-level logging because we're only _trying_ to
50ad9320
PP
202 * open this file as a Babeltrace plugin: if it's not,
203 * it's not an error. And because this can be tried
3f7d4d90
PP
204 * during bt_plugin_find_all_from_dir(), it's not even a
205 * warning.
50ad9320 206 */
3f7d4d90 207 BT_LOGI("Cannot open GModule: %s: path=\"%s\"",
3fe0bf43 208 g_module_error(), path);
9736d991 209 BT_OBJECT_PUT_REF_AND_RESET(*shared_lib_handle);
d24d5663 210 status = BT_FUNC_STATUS_NOT_FOUND;
9736d991 211 goto end;
55bb57e0
PP
212 }
213
214 goto end;
215
55bb57e0 216end:
d24d5663 217 BT_ASSERT(*shared_lib_handle || status != BT_FUNC_STATUS_OK);
9736d991 218 if (*shared_lib_handle) {
3f7d4d90 219 BT_LOGI("Created shared library handle: path=\"%s\", addr=%p",
9736d991 220 path, *shared_lib_handle);
3fe0bf43
PP
221 }
222
9736d991 223 return status;
55bb57e0
PP
224}
225
6fbd4105 226static
55bb57e0
PP
227void bt_plugin_so_destroy_spec_data(struct bt_plugin *plugin)
228{
229 struct bt_plugin_so_spec_data *spec = plugin->spec_data;
230
231 if (!plugin->spec_data) {
232 return;
233 }
234
f6ccaed9
PP
235 BT_ASSERT(plugin->type == BT_PLUGIN_TYPE_SO);
236 BT_ASSERT(spec);
65300d60 237 BT_OBJECT_PUT_REF_AND_RESET(spec->shared_lib_handle);
55bb57e0
PP
238 g_free(plugin->spec_data);
239 plugin->spec_data = NULL;
240}
241
242/*
243 * This function does the following:
244 *
245 * 1. Iterate on the plugin descriptor attributes section and set the
246 * plugin's attributes depending on the attribute types. This
247 * includes the name of the plugin, its description, and its
248 * initialization function, for example.
249 *
250 * 2. Iterate on the component class descriptors section and create one
251 * "full descriptor" (temporary structure) for each one that is found
252 * and attached to our plugin descriptor.
253 *
254 * 3. Iterate on the component class descriptor attributes section and
255 * set the corresponding full descriptor's attributes depending on
256 * the attribute types. This includes the description of the
257 * component class, as well as its initialization and destroy
258 * methods.
259 *
260 * 4. Call the user's plugin initialization function, if any is
261 * defined.
262 *
263 * 5. For each full component class descriptor, create a component class
264 * object, set its optional attributes, and add it to the plugin
265 * object.
266 *
267 * 6. Freeze the plugin object.
268 */
269static
d24d5663 270int bt_plugin_so_init(struct bt_plugin *plugin,
9736d991 271 bool fail_on_load_error,
55bb57e0
PP
272 const struct __bt_plugin_descriptor *descriptor,
273 struct __bt_plugin_descriptor_attribute const * const *attrs_begin,
274 struct __bt_plugin_descriptor_attribute const * const *attrs_end,
275 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_begin,
276 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_end,
277 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_begin,
278 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_end)
279{
280 /*
281 * This structure's members point to the plugin's memory
282 * (do NOT free).
283 */
284 struct comp_class_full_descriptor {
285 const struct __bt_plugin_component_class_descriptor *descriptor;
286 const char *description;
279b3f15 287 const char *help;
d94d92ac
PP
288
289 union {
290 struct {
2b55df78 291 bt_component_class_source_get_supported_mip_versions_method get_supported_mip_versions;
0d72b8c3
PP
292 bt_component_class_source_init_method init;
293 bt_component_class_source_finalize_method finalize;
294 bt_component_class_source_query_method query;
0d72b8c3 295 bt_component_class_source_output_port_connected_method output_port_connected;
d6e69534
PP
296 bt_component_class_source_message_iterator_init_method msg_iter_init;
297 bt_component_class_source_message_iterator_finalize_method msg_iter_finalize;
7474e7d3
PP
298 bt_component_class_source_message_iterator_seek_ns_from_origin_method msg_iter_seek_ns_from_origin;
299 bt_component_class_source_message_iterator_seek_beginning_method msg_iter_seek_beginning;
300 bt_component_class_source_message_iterator_can_seek_ns_from_origin_method msg_iter_can_seek_ns_from_origin;
301 bt_component_class_source_message_iterator_can_seek_beginning_method msg_iter_can_seek_beginning;
d94d92ac
PP
302 } source;
303
304 struct {
2b55df78 305 bt_component_class_filter_get_supported_mip_versions_method get_supported_mip_versions;
0d72b8c3
PP
306 bt_component_class_filter_init_method init;
307 bt_component_class_filter_finalize_method finalize;
308 bt_component_class_filter_query_method query;
0d72b8c3
PP
309 bt_component_class_filter_input_port_connected_method input_port_connected;
310 bt_component_class_filter_output_port_connected_method output_port_connected;
d6e69534
PP
311 bt_component_class_filter_message_iterator_init_method msg_iter_init;
312 bt_component_class_filter_message_iterator_finalize_method msg_iter_finalize;
7474e7d3
PP
313 bt_component_class_filter_message_iterator_seek_ns_from_origin_method msg_iter_seek_ns_from_origin;
314 bt_component_class_filter_message_iterator_seek_beginning_method msg_iter_seek_beginning;
315 bt_component_class_filter_message_iterator_can_seek_ns_from_origin_method msg_iter_can_seek_ns_from_origin;
316 bt_component_class_filter_message_iterator_can_seek_beginning_method msg_iter_can_seek_beginning;
d94d92ac
PP
317 } filter;
318
319 struct {
2b55df78 320 bt_component_class_sink_get_supported_mip_versions_method get_supported_mip_versions;
0d72b8c3
PP
321 bt_component_class_sink_init_method init;
322 bt_component_class_sink_finalize_method finalize;
323 bt_component_class_sink_query_method query;
0d72b8c3 324 bt_component_class_sink_input_port_connected_method input_port_connected;
5badd463 325 bt_component_class_sink_graph_is_configured_method graph_is_configured;
d94d92ac
PP
326 } sink;
327 } methods;
55bb57e0
PP
328 };
329
d24d5663 330 int status = BT_FUNC_STATUS_OK;
55bb57e0
PP
331 struct __bt_plugin_descriptor_attribute const * const *cur_attr_ptr;
332 struct __bt_plugin_component_class_descriptor const * const *cur_cc_descr_ptr;
333 struct __bt_plugin_component_class_descriptor_attribute const * const *cur_cc_descr_attr_ptr;
334 struct bt_plugin_so_spec_data *spec = plugin->spec_data;
335 GArray *comp_class_full_descriptors;
336 size_t i;
337 int ret;
338
3f7d4d90 339 BT_LOGI("Initializing plugin object from descriptors found in sections: "
3fe0bf43
PP
340 "plugin-addr=%p, plugin-path=\"%s\", "
341 "attrs-begin-addr=%p, attrs-end-addr=%p, "
342 "cc-descr-begin-addr=%p, cc-descr-end-addr=%p, "
343 "cc-descr-attrs-begin-addr=%p, cc-descr-attrs-end-addr=%p",
344 plugin,
345 spec->shared_lib_handle->path ?
346 spec->shared_lib_handle->path->str : NULL,
347 attrs_begin, attrs_end,
348 cc_descriptors_begin, cc_descriptors_end,
349 cc_descr_attrs_begin, cc_descr_attrs_end);
55bb57e0
PP
350 comp_class_full_descriptors = g_array_new(FALSE, TRUE,
351 sizeof(struct comp_class_full_descriptor));
352 if (!comp_class_full_descriptors) {
870631a2 353 BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GArray.");
d24d5663 354 status = BT_FUNC_STATUS_MEMORY_ERROR;
55bb57e0
PP
355 goto end;
356 }
357
358 /* Set mandatory attributes */
359 spec->descriptor = descriptor;
360 bt_plugin_set_name(plugin, descriptor->name);
361
362 /*
363 * Find and set optional attributes attached to this plugin
364 * descriptor.
365 */
366 for (cur_attr_ptr = attrs_begin; cur_attr_ptr != attrs_end; cur_attr_ptr++) {
367 const struct __bt_plugin_descriptor_attribute *cur_attr =
368 *cur_attr_ptr;
369
5084732e 370 if (!cur_attr) {
52238017
MJ
371 continue;
372 }
373
55bb57e0
PP
374 if (cur_attr->plugin_descriptor != descriptor) {
375 continue;
376 }
377
378 switch (cur_attr->type) {
379 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_INIT:
380 spec->init = cur_attr->value.init;
381 break;
382 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_EXIT:
383 spec->shared_lib_handle->exit = cur_attr->value.exit;
384 break;
385 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_AUTHOR:
386 bt_plugin_set_author(plugin, cur_attr->value.author);
387 break;
388 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_LICENSE:
389 bt_plugin_set_license(plugin, cur_attr->value.license);
390 break;
391 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_DESCRIPTION:
392 bt_plugin_set_description(plugin, cur_attr->value.description);
393 break;
394 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_VERSION:
395 bt_plugin_set_version(plugin,
396 (unsigned int) cur_attr->value.version.major,
397 (unsigned int) cur_attr->value.version.minor,
398 (unsigned int) cur_attr->value.version.patch,
399 cur_attr->value.version.extra);
400 break;
401 default:
9736d991 402 if (fail_on_load_error) {
870631a2
PP
403 BT_LIB_LOGW_APPEND_CAUSE(
404 "Unknown plugin descriptor attribute: "
405 "plugin-path=\"%s\", plugin-name=\"%s\", "
406 "attr-type-name=\"%s\", attr-type-id=%d",
407 spec->shared_lib_handle->path ?
408 spec->shared_lib_handle->path->str :
409 NULL,
410 descriptor->name, cur_attr->type_name,
411 cur_attr->type);
b189a968 412 status = BT_FUNC_STATUS_ERROR;
9736d991 413 goto end;
870631a2 414 } else {
a0cdfce8 415 BT_LIB_LOGW(
870631a2
PP
416 "Ignoring unknown plugin descriptor attribute: "
417 "plugin-path=\"%s\", plugin-name=\"%s\", "
418 "attr-type-name=\"%s\", attr-type-id=%d",
419 spec->shared_lib_handle->path ?
420 spec->shared_lib_handle->path->str :
421 NULL,
422 descriptor->name, cur_attr->type_name,
423 cur_attr->type);
9736d991
PP
424 }
425
55bb57e0
PP
426 break;
427 }
428 }
429
430 /*
431 * Find component class descriptors attached to this plugin
432 * descriptor and initialize corresponding full component class
433 * descriptors in the array.
434 */
435 for (cur_cc_descr_ptr = cc_descriptors_begin; cur_cc_descr_ptr != cc_descriptors_end; cur_cc_descr_ptr++) {
436 const struct __bt_plugin_component_class_descriptor *cur_cc_descr =
437 *cur_cc_descr_ptr;
438 struct comp_class_full_descriptor full_descriptor = {0};
439
5084732e 440 if (!cur_cc_descr) {
52238017
MJ
441 continue;
442 }
443
55bb57e0
PP
444 if (cur_cc_descr->plugin_descriptor != descriptor) {
445 continue;
446 }
447
448 full_descriptor.descriptor = cur_cc_descr;
449 g_array_append_val(comp_class_full_descriptors,
450 full_descriptor);
451 }
452
453 /*
454 * Find component class descriptor attributes attached to this
455 * plugin descriptor and update corresponding full component
456 * class descriptors in the array.
457 */
458 for (cur_cc_descr_attr_ptr = cc_descr_attrs_begin; cur_cc_descr_attr_ptr != cc_descr_attrs_end; cur_cc_descr_attr_ptr++) {
459 const struct __bt_plugin_component_class_descriptor_attribute *cur_cc_descr_attr =
460 *cur_cc_descr_attr_ptr;
d94d92ac 461 enum bt_component_class_type cc_type;
55bb57e0 462
5084732e 463 if (!cur_cc_descr_attr) {
52238017
MJ
464 continue;
465 }
466
55bb57e0
PP
467 if (cur_cc_descr_attr->comp_class_descriptor->plugin_descriptor !=
468 descriptor) {
469 continue;
470 }
471
d94d92ac
PP
472 cc_type = cur_cc_descr_attr->comp_class_descriptor->type;
473
55bb57e0
PP
474 /* Find the corresponding component class descriptor entry */
475 for (i = 0; i < comp_class_full_descriptors->len; i++) {
476 struct comp_class_full_descriptor *cc_full_descr =
477 &g_array_index(comp_class_full_descriptors,
478 struct comp_class_full_descriptor, i);
479
d94d92ac 480 if (cur_cc_descr_attr->comp_class_descriptor !=
55bb57e0 481 cc_full_descr->descriptor) {
d94d92ac
PP
482 continue;
483 }
484
485 switch (cur_cc_descr_attr->type) {
486 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_DESCRIPTION:
487 cc_full_descr->description =
488 cur_cc_descr_attr->value.description;
489 break;
490 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_HELP:
491 cc_full_descr->help =
492 cur_cc_descr_attr->value.help;
493 break;
2b55df78
PP
494 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_GET_SUPPORTED_MIP_VERSIONS_METHOD:
495 switch (cc_type) {
496 case BT_COMPONENT_CLASS_TYPE_SOURCE:
497 cc_full_descr->methods.source.get_supported_mip_versions =
498 cur_cc_descr_attr->value.source_get_supported_mip_versions_method;
499 break;
500 case BT_COMPONENT_CLASS_TYPE_FILTER:
501 cc_full_descr->methods.filter.get_supported_mip_versions =
502 cur_cc_descr_attr->value.filter_get_supported_mip_versions_method;
503 break;
504 case BT_COMPONENT_CLASS_TYPE_SINK:
505 cc_full_descr->methods.sink.get_supported_mip_versions =
506 cur_cc_descr_attr->value.sink_get_supported_mip_versions_method;
507 break;
508 default:
509 abort();
510 }
511 break;
d94d92ac
PP
512 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_INIT_METHOD:
513 switch (cc_type) {
514 case BT_COMPONENT_CLASS_TYPE_SOURCE:
515 cc_full_descr->methods.source.init =
516 cur_cc_descr_attr->value.source_init_method;
55bb57e0 517 break;
d94d92ac
PP
518 case BT_COMPONENT_CLASS_TYPE_FILTER:
519 cc_full_descr->methods.filter.init =
520 cur_cc_descr_attr->value.filter_init_method;
279b3f15 521 break;
d94d92ac
PP
522 case BT_COMPONENT_CLASS_TYPE_SINK:
523 cc_full_descr->methods.sink.init =
524 cur_cc_descr_attr->value.sink_init_method;
55bb57e0 525 break;
d94d92ac
PP
526 default:
527 abort();
528 }
529 break;
530 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_FINALIZE_METHOD:
531 switch (cc_type) {
532 case BT_COMPONENT_CLASS_TYPE_SOURCE:
533 cc_full_descr->methods.source.finalize =
534 cur_cc_descr_attr->value.source_finalize_method;
55bb57e0 535 break;
d94d92ac
PP
536 case BT_COMPONENT_CLASS_TYPE_FILTER:
537 cc_full_descr->methods.filter.finalize =
538 cur_cc_descr_attr->value.filter_finalize_method;
8463eac2 539 break;
d94d92ac
PP
540 case BT_COMPONENT_CLASS_TYPE_SINK:
541 cc_full_descr->methods.sink.finalize =
542 cur_cc_descr_attr->value.sink_finalize_method;
72b913fb 543 break;
d94d92ac
PP
544 default:
545 abort();
546 }
547 break;
548 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_QUERY_METHOD:
549 switch (cc_type) {
550 case BT_COMPONENT_CLASS_TYPE_SOURCE:
551 cc_full_descr->methods.source.query =
552 cur_cc_descr_attr->value.source_query_method;
0d8b4d8e 553 break;
d94d92ac
PP
554 case BT_COMPONENT_CLASS_TYPE_FILTER:
555 cc_full_descr->methods.filter.query =
556 cur_cc_descr_attr->value.filter_query_method;
55bb57e0 557 break;
d94d92ac
PP
558 case BT_COMPONENT_CLASS_TYPE_SINK:
559 cc_full_descr->methods.sink.query =
560 cur_cc_descr_attr->value.sink_query_method;
55bb57e0 561 break;
d94d92ac
PP
562 default:
563 abort();
564 }
565 break;
d94d92ac
PP
566 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_INPUT_PORT_CONNECTED_METHOD:
567 switch (cc_type) {
568 case BT_COMPONENT_CLASS_TYPE_FILTER:
569 cc_full_descr->methods.filter.input_port_connected =
570 cur_cc_descr_attr->value.filter_input_port_connected_method;
571 break;
572 case BT_COMPONENT_CLASS_TYPE_SINK:
573 cc_full_descr->methods.sink.input_port_connected =
574 cur_cc_descr_attr->value.sink_input_port_connected_method;
55bb57e0 575 break;
55bb57e0 576 default:
d94d92ac
PP
577 abort();
578 }
579 break;
580 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_OUTPUT_PORT_CONNECTED_METHOD:
581 switch (cc_type) {
582 case BT_COMPONENT_CLASS_TYPE_SOURCE:
583 cc_full_descr->methods.source.output_port_connected =
584 cur_cc_descr_attr->value.source_output_port_connected_method;
585 break;
586 case BT_COMPONENT_CLASS_TYPE_FILTER:
587 cc_full_descr->methods.filter.output_port_connected =
588 cur_cc_descr_attr->value.filter_output_port_connected_method;
55bb57e0 589 break;
d94d92ac
PP
590 default:
591 abort();
55bb57e0 592 }
d94d92ac 593 break;
5badd463
PP
594 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_GRAPH_IS_CONFIGURED_METHOD:
595 switch (cc_type) {
596 case BT_COMPONENT_CLASS_TYPE_SINK:
597 cc_full_descr->methods.sink.graph_is_configured =
598 cur_cc_descr_attr->value.sink_graph_is_configured_method;
599 break;
600 default:
601 abort();
602 }
603 break;
d6e69534 604 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_MSG_ITER_INIT_METHOD:
d94d92ac
PP
605 switch (cc_type) {
606 case BT_COMPONENT_CLASS_TYPE_SOURCE:
d6e69534
PP
607 cc_full_descr->methods.source.msg_iter_init =
608 cur_cc_descr_attr->value.source_msg_iter_init_method;
d94d92ac
PP
609 break;
610 case BT_COMPONENT_CLASS_TYPE_FILTER:
d6e69534
PP
611 cc_full_descr->methods.filter.msg_iter_init =
612 cur_cc_descr_attr->value.filter_msg_iter_init_method;
d94d92ac
PP
613 break;
614 default:
615 abort();
616 }
617 break;
d6e69534 618 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_MSG_ITER_FINALIZE_METHOD:
d94d92ac
PP
619 switch (cc_type) {
620 case BT_COMPONENT_CLASS_TYPE_SOURCE:
d6e69534
PP
621 cc_full_descr->methods.source.msg_iter_finalize =
622 cur_cc_descr_attr->value.source_msg_iter_finalize_method;
d94d92ac
PP
623 break;
624 case BT_COMPONENT_CLASS_TYPE_FILTER:
d6e69534
PP
625 cc_full_descr->methods.filter.msg_iter_finalize =
626 cur_cc_descr_attr->value.filter_msg_iter_finalize_method;
d94d92ac
PP
627 break;
628 default:
629 abort();
630 }
631 break;
7474e7d3
PP
632 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_MSG_ITER_SEEK_NS_FROM_ORIGIN_METHOD:
633 switch (cc_type) {
634 case BT_COMPONENT_CLASS_TYPE_SOURCE:
635 cc_full_descr->methods.source.msg_iter_seek_ns_from_origin =
636 cur_cc_descr_attr->value.source_msg_iter_seek_ns_from_origin_method;
637 break;
638 case BT_COMPONENT_CLASS_TYPE_FILTER:
639 cc_full_descr->methods.filter.msg_iter_seek_ns_from_origin =
640 cur_cc_descr_attr->value.filter_msg_iter_seek_ns_from_origin_method;
641 break;
642 default:
643 abort();
644 }
645 break;
646 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_MSG_ITER_SEEK_BEGINNING_METHOD:
647 switch (cc_type) {
648 case BT_COMPONENT_CLASS_TYPE_SOURCE:
649 cc_full_descr->methods.source.msg_iter_seek_beginning =
650 cur_cc_descr_attr->value.source_msg_iter_seek_beginning_method;
651 break;
652 case BT_COMPONENT_CLASS_TYPE_FILTER:
653 cc_full_descr->methods.filter.msg_iter_seek_beginning =
654 cur_cc_descr_attr->value.filter_msg_iter_seek_beginning_method;
655 break;
656 default:
657 abort();
658 }
659 break;
660 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_MSG_ITER_CAN_SEEK_NS_FROM_ORIGIN_METHOD:
661 switch (cc_type) {
662 case BT_COMPONENT_CLASS_TYPE_SOURCE:
663 cc_full_descr->methods.source.msg_iter_can_seek_ns_from_origin =
664 cur_cc_descr_attr->value.source_msg_iter_can_seek_ns_from_origin_method;
665 break;
666 case BT_COMPONENT_CLASS_TYPE_FILTER:
667 cc_full_descr->methods.filter.msg_iter_can_seek_ns_from_origin =
668 cur_cc_descr_attr->value.filter_msg_iter_can_seek_ns_from_origin_method;
669 break;
670 default:
671 abort();
672 }
673 break;
674 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_MSG_ITER_CAN_SEEK_BEGINNING_METHOD:
675 switch (cc_type) {
676 case BT_COMPONENT_CLASS_TYPE_SOURCE:
677 cc_full_descr->methods.source.msg_iter_can_seek_beginning =
678 cur_cc_descr_attr->value.source_msg_iter_can_seek_beginning_method;
679 break;
680 case BT_COMPONENT_CLASS_TYPE_FILTER:
681 cc_full_descr->methods.filter.msg_iter_can_seek_beginning =
682 cur_cc_descr_attr->value.filter_msg_iter_can_seek_beginning_method;
683 break;
684 default:
685 abort();
686 }
687 break;
d94d92ac 688 default:
9736d991 689 if (fail_on_load_error) {
870631a2
PP
690 BT_LIB_LOGW_APPEND_CAUSE(
691 "Unknown component class descriptor attribute: "
692 "plugin-path=\"%s\", "
693 "plugin-name=\"%s\", "
694 "comp-class-name=\"%s\", "
695 "comp-class-type=%s, "
696 "attr-type-name=\"%s\", "
697 "attr-type-id=%d",
698 spec->shared_lib_handle->path ?
699 spec->shared_lib_handle->path->str :
700 NULL,
701 descriptor->name,
702 cur_cc_descr_attr->comp_class_descriptor->name,
703 bt_component_class_type_string(
704 cur_cc_descr_attr->comp_class_descriptor->type),
705 cur_cc_descr_attr->type_name,
706 cur_cc_descr_attr->type);
b189a968 707 status = BT_FUNC_STATUS_ERROR;
9736d991 708 goto end;
870631a2 709 } else {
a0cdfce8 710 BT_LIB_LOGW(
870631a2
PP
711 "Ignoring unknown component class descriptor attribute: "
712 "plugin-path=\"%s\", "
713 "plugin-name=\"%s\", "
714 "comp-class-name=\"%s\", "
715 "comp-class-type=%s, "
716 "attr-type-name=\"%s\", "
717 "attr-type-id=%d",
718 spec->shared_lib_handle->path ?
719 spec->shared_lib_handle->path->str :
720 NULL,
721 descriptor->name,
722 cur_cc_descr_attr->comp_class_descriptor->name,
723 bt_component_class_type_string(
724 cur_cc_descr_attr->comp_class_descriptor->type),
725 cur_cc_descr_attr->type_name,
726 cur_cc_descr_attr->type);
9736d991
PP
727 }
728
d94d92ac 729 break;
55bb57e0
PP
730 }
731 }
732 }
733
734 /* Initialize plugin */
735 if (spec->init) {
d24d5663 736 enum bt_plugin_init_func_status init_status;
a21d1cb8 737
3fe0bf43 738 BT_LOGD_STR("Calling user's plugin initialization function.");
a21d1cb8 739 init_status = spec->init((void *) plugin);
9736d991 740 BT_LOGD("User function returned: status=%s",
d24d5663 741 bt_common_func_status_string(init_status));
3fe0bf43 742
9724cce9 743 if (init_status < 0) {
9736d991 744 if (fail_on_load_error) {
870631a2
PP
745 BT_LIB_LOGW_APPEND_CAUSE(
746 "User's plugin initialization function failed: "
747 "status=%s",
748 bt_common_func_status_string(init_status));
d24d5663 749 status = init_status;
9736d991 750 goto end;
870631a2 751 } else {
a0cdfce8 752 BT_LIB_LOGW(
870631a2
PP
753 "User's plugin initialization function failed: "
754 "status=%s",
755 bt_common_func_status_string(init_status));
756 status = BT_FUNC_STATUS_NOT_FOUND;
9736d991 757 }
870631a2
PP
758
759 goto end;
55bb57e0
PP
760 }
761 }
762
c55a9f58 763 spec->shared_lib_handle->init_called = BT_TRUE;
55bb57e0
PP
764
765 /* Add described component classes to plugin */
766 for (i = 0; i < comp_class_full_descriptors->len; i++) {
767 struct comp_class_full_descriptor *cc_full_descr =
768 &g_array_index(comp_class_full_descriptors,
769 struct comp_class_full_descriptor, i);
0d72b8c3
PP
770 struct bt_component_class *comp_class = NULL;
771 struct bt_component_class_source *src_comp_class = NULL;
772 struct bt_component_class_filter *flt_comp_class = NULL;
773 struct bt_component_class_sink *sink_comp_class = NULL;
55bb57e0 774
3f7d4d90 775 BT_LOGI("Creating and setting properties of plugin's component class: "
3fe0bf43
PP
776 "plugin-path=\"%s\", plugin-name=\"%s\", "
777 "comp-class-name=\"%s\", comp-class-type=%s",
778 spec->shared_lib_handle->path ?
779 spec->shared_lib_handle->path->str :
780 NULL,
781 descriptor->name,
782 cc_full_descr->descriptor->name,
783 bt_component_class_type_string(
784 cc_full_descr->descriptor->type));
785
55bb57e0
PP
786 switch (cc_full_descr->descriptor->type) {
787 case BT_COMPONENT_CLASS_TYPE_SOURCE:
0d72b8c3 788 src_comp_class = bt_component_class_source_create(
55bb57e0 789 cc_full_descr->descriptor->name,
d6e69534 790 cc_full_descr->descriptor->methods.source.msg_iter_next);
0d72b8c3 791 comp_class = bt_component_class_source_as_component_class(
d94d92ac 792 src_comp_class);
55bb57e0
PP
793 break;
794 case BT_COMPONENT_CLASS_TYPE_FILTER:
0d72b8c3 795 flt_comp_class = bt_component_class_filter_create(
55bb57e0 796 cc_full_descr->descriptor->name,
d6e69534 797 cc_full_descr->descriptor->methods.source.msg_iter_next);
0d72b8c3 798 comp_class = bt_component_class_filter_as_component_class(
d94d92ac 799 flt_comp_class);
55bb57e0
PP
800 break;
801 case BT_COMPONENT_CLASS_TYPE_SINK:
0d72b8c3 802 sink_comp_class = bt_component_class_sink_create(
55bb57e0
PP
803 cc_full_descr->descriptor->name,
804 cc_full_descr->descriptor->methods.sink.consume);
0d72b8c3 805 comp_class = bt_component_class_sink_as_component_class(
d94d92ac 806 sink_comp_class);
55bb57e0
PP
807 break;
808 default:
9736d991 809 if (fail_on_load_error) {
870631a2
PP
810 BT_LIB_LOGW_APPEND_CAUSE(
811 "Unknown component class type: "
812 "plugin-path=\"%s\", plugin-name=\"%s\", "
813 "comp-class-name=\"%s\", comp-class-type=%d",
814 spec->shared_lib_handle->path->str ?
815 spec->shared_lib_handle->path->str :
816 NULL,
817 descriptor->name,
818 cc_full_descr->descriptor->name,
819 cc_full_descr->descriptor->type);
b189a968 820 status = BT_FUNC_STATUS_ERROR;
9736d991 821 goto end;
870631a2 822 } else {
a0cdfce8 823 BT_LIB_LOGW(
870631a2
PP
824 "Ignoring unknown component class type: "
825 "plugin-path=\"%s\", plugin-name=\"%s\", "
826 "comp-class-name=\"%s\", comp-class-type=%d",
827 spec->shared_lib_handle->path->str ?
828 spec->shared_lib_handle->path->str :
829 NULL,
830 descriptor->name,
831 cc_full_descr->descriptor->name,
832 cc_full_descr->descriptor->type);
833 continue;
9736d991 834 }
55bb57e0
PP
835 }
836
837 if (!comp_class) {
870631a2
PP
838 BT_LIB_LOGE_APPEND_CAUSE(
839 "Cannot create component class.");
d24d5663 840 status = BT_FUNC_STATUS_MEMORY_ERROR;
55bb57e0
PP
841 goto end;
842 }
843
844 if (cc_full_descr->description) {
0d72b8c3 845 ret = bt_component_class_set_description(
d94d92ac 846 comp_class, cc_full_descr->description);
55bb57e0 847 if (ret) {
870631a2
PP
848 BT_LIB_LOGE_APPEND_CAUSE(
849 "Cannot set component class's description.");
d24d5663 850 status = BT_FUNC_STATUS_MEMORY_ERROR;
65300d60 851 BT_OBJECT_PUT_REF_AND_RESET(comp_class);
55bb57e0
PP
852 goto end;
853 }
854 }
855
279b3f15 856 if (cc_full_descr->help) {
0d72b8c3 857 ret = bt_component_class_set_help(comp_class,
279b3f15
PP
858 cc_full_descr->help);
859 if (ret) {
870631a2
PP
860 BT_LIB_LOGE_APPEND_CAUSE(
861 "Cannot set component class's help string.");
d24d5663 862 status = BT_FUNC_STATUS_MEMORY_ERROR;
65300d60 863 BT_OBJECT_PUT_REF_AND_RESET(comp_class);
279b3f15
PP
864 goto end;
865 }
866 }
867
d94d92ac
PP
868 switch (cc_full_descr->descriptor->type) {
869 case BT_COMPONENT_CLASS_TYPE_SOURCE:
2b55df78
PP
870 if (cc_full_descr->methods.source.get_supported_mip_versions) {
871 ret = bt_component_class_source_set_get_supported_mip_versions_method(
872 src_comp_class,
873 cc_full_descr->methods.source.get_supported_mip_versions);
874 if (ret) {
875 BT_LIB_LOGE_APPEND_CAUSE(
876 "Cannot set source component class's \"get supported MIP versions\" method.");
877 status = BT_FUNC_STATUS_MEMORY_ERROR;
878 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
879 goto end;
880 }
881 }
882
d94d92ac 883 if (cc_full_descr->methods.source.init) {
0d72b8c3 884 ret = bt_component_class_source_set_init_method(
d94d92ac
PP
885 src_comp_class,
886 cc_full_descr->methods.source.init);
887 if (ret) {
870631a2
PP
888 BT_LIB_LOGE_APPEND_CAUSE(
889 "Cannot set source component class's initialization method.");
d24d5663 890 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac
PP
891 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
892 goto end;
893 }
55bb57e0 894 }
55bb57e0 895
d94d92ac 896 if (cc_full_descr->methods.source.finalize) {
0d72b8c3 897 ret = bt_component_class_source_set_finalize_method(
d94d92ac
PP
898 src_comp_class,
899 cc_full_descr->methods.source.finalize);
900 if (ret) {
870631a2
PP
901 BT_LIB_LOGE_APPEND_CAUSE(
902 "Cannot set source component class's finalization method.");
d24d5663 903 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac
PP
904 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
905 goto end;
906 }
55bb57e0 907 }
55bb57e0 908
d94d92ac 909 if (cc_full_descr->methods.source.query) {
0d72b8c3 910 ret = bt_component_class_source_set_query_method(
d94d92ac
PP
911 src_comp_class,
912 cc_full_descr->methods.source.query);
913 if (ret) {
870631a2
PP
914 BT_LIB_LOGE_APPEND_CAUSE(
915 "Cannot set source component class's query method.");
d24d5663 916 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac
PP
917 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
918 goto end;
919 }
8463eac2 920 }
8463eac2 921
d94d92ac 922 if (cc_full_descr->methods.source.output_port_connected) {
0d72b8c3 923 ret = bt_component_class_source_set_output_port_connected_method(
d94d92ac
PP
924 src_comp_class,
925 cc_full_descr->methods.source.output_port_connected);
926 if (ret) {
870631a2
PP
927 BT_LIB_LOGE_APPEND_CAUSE(
928 "Cannot set source component class's \"output port connected\" method.");
d24d5663 929 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac
PP
930 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
931 goto end;
932 }
0d8b4d8e 933 }
0d8b4d8e 934
d6e69534
PP
935 if (cc_full_descr->methods.source.msg_iter_init) {
936 ret = bt_component_class_source_set_message_iterator_init_method(
d94d92ac 937 src_comp_class,
d6e69534 938 cc_full_descr->methods.source.msg_iter_init);
55bb57e0 939 if (ret) {
870631a2
PP
940 BT_LIB_LOGE_APPEND_CAUSE(
941 "Cannot set source component class's message iterator initialization method.");
d24d5663 942 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac 943 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
55bb57e0
PP
944 goto end;
945 }
946 }
947
d6e69534
PP
948 if (cc_full_descr->methods.source.msg_iter_finalize) {
949 ret = bt_component_class_source_set_message_iterator_finalize_method(
d94d92ac 950 src_comp_class,
d6e69534 951 cc_full_descr->methods.source.msg_iter_finalize);
55bb57e0 952 if (ret) {
870631a2
PP
953 BT_LIB_LOGE_APPEND_CAUSE(
954 "Cannot set source component class's message iterator finalization method.");
d24d5663 955 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac 956 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
55bb57e0
PP
957 goto end;
958 }
959 }
d94d92ac 960
7474e7d3
PP
961 if (cc_full_descr->methods.source.msg_iter_seek_ns_from_origin) {
962 ret = bt_component_class_source_set_message_iterator_seek_ns_from_origin_method(
963 src_comp_class,
964 cc_full_descr->methods.source.msg_iter_seek_ns_from_origin);
965 if (ret) {
870631a2
PP
966 BT_LIB_LOGE_APPEND_CAUSE(
967 "Cannot set source component class's message iterator \"seek nanoseconds from origin\" method.");
d24d5663 968 status = BT_FUNC_STATUS_MEMORY_ERROR;
7474e7d3
PP
969 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
970 goto end;
971 }
972 }
973
974 if (cc_full_descr->methods.source.msg_iter_seek_beginning) {
975 ret = bt_component_class_source_set_message_iterator_seek_beginning_method(
976 src_comp_class,
977 cc_full_descr->methods.source.msg_iter_seek_beginning);
978 if (ret) {
870631a2
PP
979 BT_LIB_LOGE_APPEND_CAUSE(
980 "Cannot set source component class's message iterator \"seek beginning\" method.");
d24d5663 981 status = BT_FUNC_STATUS_MEMORY_ERROR;
7474e7d3
PP
982 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
983 goto end;
984 }
985 }
986
987 if (cc_full_descr->methods.source.msg_iter_can_seek_ns_from_origin) {
988 ret = bt_component_class_source_set_message_iterator_can_seek_ns_from_origin_method(
989 src_comp_class,
990 cc_full_descr->methods.source.msg_iter_can_seek_ns_from_origin);
991 if (ret) {
870631a2
PP
992 BT_LIB_LOGE_APPEND_CAUSE(
993 "Cannot set source component class's message iterator \"can seek nanoseconds from origin\" method.");
d24d5663 994 status = BT_FUNC_STATUS_MEMORY_ERROR;
7474e7d3
PP
995 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
996 goto end;
997 }
998 }
999
1000 if (cc_full_descr->methods.source.msg_iter_can_seek_beginning) {
1001 ret = bt_component_class_source_set_message_iterator_can_seek_beginning_method(
1002 src_comp_class,
1003 cc_full_descr->methods.source.msg_iter_can_seek_beginning);
1004 if (ret) {
870631a2
PP
1005 BT_LIB_LOGE_APPEND_CAUSE(
1006 "Cannot set source component class's message iterator \"can seek beginning\" method.");
d24d5663 1007 status = BT_FUNC_STATUS_MEMORY_ERROR;
7474e7d3
PP
1008 BT_OBJECT_PUT_REF_AND_RESET(src_comp_class);
1009 goto end;
1010 }
1011 }
1012
55bb57e0
PP
1013 break;
1014 case BT_COMPONENT_CLASS_TYPE_FILTER:
2b55df78
PP
1015 if (cc_full_descr->methods.filter.get_supported_mip_versions) {
1016 ret = bt_component_class_filter_set_get_supported_mip_versions_method(
1017 flt_comp_class,
1018 cc_full_descr->methods.filter.get_supported_mip_versions);
1019 if (ret) {
1020 BT_LIB_LOGE_APPEND_CAUSE(
1021 "Cannot set filter component class's \"get supported MIP versions\" method.");
1022 status = BT_FUNC_STATUS_MEMORY_ERROR;
1023 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
1024 goto end;
1025 }
1026 }
1027
d94d92ac 1028 if (cc_full_descr->methods.filter.init) {
0d72b8c3 1029 ret = bt_component_class_filter_set_init_method(
d94d92ac
PP
1030 flt_comp_class,
1031 cc_full_descr->methods.filter.init);
1032 if (ret) {
870631a2
PP
1033 BT_LIB_LOGE_APPEND_CAUSE(
1034 "Cannot set filter component class's initialization method.");
d24d5663 1035 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac
PP
1036 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
1037 goto end;
1038 }
1039 }
1040
1041 if (cc_full_descr->methods.filter.finalize) {
0d72b8c3 1042 ret = bt_component_class_filter_set_finalize_method(
d94d92ac
PP
1043 flt_comp_class,
1044 cc_full_descr->methods.filter.finalize);
1045 if (ret) {
870631a2
PP
1046 BT_LIB_LOGE_APPEND_CAUSE(
1047 "Cannot set filter component class's finalization method.");
d24d5663 1048 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac
PP
1049 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
1050 goto end;
1051 }
1052 }
1053
1054 if (cc_full_descr->methods.filter.query) {
0d72b8c3 1055 ret = bt_component_class_filter_set_query_method(
d94d92ac
PP
1056 flt_comp_class,
1057 cc_full_descr->methods.filter.query);
1058 if (ret) {
870631a2
PP
1059 BT_LIB_LOGE_APPEND_CAUSE(
1060 "Cannot set filter component class's query method.");
d24d5663 1061 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac
PP
1062 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
1063 goto end;
1064 }
1065 }
1066
d94d92ac 1067 if (cc_full_descr->methods.filter.input_port_connected) {
0d72b8c3 1068 ret = bt_component_class_filter_set_input_port_connected_method(
d94d92ac
PP
1069 flt_comp_class,
1070 cc_full_descr->methods.filter.input_port_connected);
1071 if (ret) {
870631a2
PP
1072 BT_LIB_LOGE_APPEND_CAUSE(
1073 "Cannot set filter component class's \"input port connected\" method.");
d24d5663 1074 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac
PP
1075 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
1076 goto end;
1077 }
1078 }
1079
1080 if (cc_full_descr->methods.filter.output_port_connected) {
0d72b8c3 1081 ret = bt_component_class_filter_set_output_port_connected_method(
d94d92ac
PP
1082 flt_comp_class,
1083 cc_full_descr->methods.filter.output_port_connected);
1084 if (ret) {
870631a2
PP
1085 BT_LIB_LOGE_APPEND_CAUSE(
1086 "Cannot set filter component class's \"output port connected\" method.");
d24d5663 1087 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac
PP
1088 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
1089 goto end;
1090 }
1091 }
1092
d6e69534
PP
1093 if (cc_full_descr->methods.filter.msg_iter_init) {
1094 ret = bt_component_class_filter_set_message_iterator_init_method(
d94d92ac 1095 flt_comp_class,
d6e69534 1096 cc_full_descr->methods.filter.msg_iter_init);
55bb57e0 1097 if (ret) {
870631a2
PP
1098 BT_LIB_LOGE_APPEND_CAUSE(
1099 "Cannot set filter component class's message iterator initialization method.");
d24d5663 1100 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac 1101 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
55bb57e0
PP
1102 goto end;
1103 }
1104 }
1105
d6e69534
PP
1106 if (cc_full_descr->methods.filter.msg_iter_finalize) {
1107 ret = bt_component_class_filter_set_message_iterator_finalize_method(
d94d92ac 1108 flt_comp_class,
d6e69534 1109 cc_full_descr->methods.filter.msg_iter_finalize);
55bb57e0 1110 if (ret) {
870631a2
PP
1111 BT_LIB_LOGE_APPEND_CAUSE(
1112 "Cannot set filter component class's message iterator finalization method.");
d24d5663 1113 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac 1114 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
55bb57e0
PP
1115 goto end;
1116 }
1117 }
d94d92ac 1118
7474e7d3
PP
1119 if (cc_full_descr->methods.filter.msg_iter_seek_ns_from_origin) {
1120 ret = bt_component_class_filter_set_message_iterator_seek_ns_from_origin_method(
1121 flt_comp_class,
1122 cc_full_descr->methods.filter.msg_iter_seek_ns_from_origin);
1123 if (ret) {
870631a2
PP
1124 BT_LIB_LOGE_APPEND_CAUSE(
1125 "Cannot set filter component class's message iterator \"seek nanoseconds from origin\" method.");
d24d5663 1126 status = BT_FUNC_STATUS_MEMORY_ERROR;
7474e7d3
PP
1127 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
1128 goto end;
1129 }
1130 }
1131
1132 if (cc_full_descr->methods.filter.msg_iter_seek_beginning) {
1133 ret = bt_component_class_filter_set_message_iterator_seek_beginning_method(
1134 flt_comp_class,
1135 cc_full_descr->methods.filter.msg_iter_seek_beginning);
1136 if (ret) {
870631a2
PP
1137 BT_LIB_LOGE_APPEND_CAUSE(
1138 "Cannot set filter component class's message iterator \"seek beginning\" method.");
d24d5663 1139 status = BT_FUNC_STATUS_MEMORY_ERROR;
7474e7d3
PP
1140 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
1141 goto end;
1142 }
1143 }
1144
1145 if (cc_full_descr->methods.filter.msg_iter_can_seek_ns_from_origin) {
1146 ret = bt_component_class_filter_set_message_iterator_can_seek_ns_from_origin_method(
1147 flt_comp_class,
1148 cc_full_descr->methods.filter.msg_iter_can_seek_ns_from_origin);
1149 if (ret) {
870631a2
PP
1150 BT_LIB_LOGE_APPEND_CAUSE(
1151 "Cannot set filter component class's message iterator \"can seek nanoseconds from origin\" method.");
d24d5663 1152 status = BT_FUNC_STATUS_MEMORY_ERROR;
7474e7d3
PP
1153 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
1154 goto end;
1155 }
1156 }
1157
1158 if (cc_full_descr->methods.filter.msg_iter_can_seek_beginning) {
1159 ret = bt_component_class_filter_set_message_iterator_can_seek_beginning_method(
1160 flt_comp_class,
1161 cc_full_descr->methods.filter.msg_iter_can_seek_beginning);
1162 if (ret) {
870631a2
PP
1163 BT_LIB_LOGE_APPEND_CAUSE(
1164 "Cannot set filter component class's message iterator \"can seek beginning\" method.");
d24d5663 1165 status = BT_FUNC_STATUS_MEMORY_ERROR;
7474e7d3
PP
1166 BT_OBJECT_PUT_REF_AND_RESET(flt_comp_class);
1167 goto end;
1168 }
1169 }
1170
55bb57e0
PP
1171 break;
1172 case BT_COMPONENT_CLASS_TYPE_SINK:
2b55df78
PP
1173 if (cc_full_descr->methods.sink.get_supported_mip_versions) {
1174 ret = bt_component_class_sink_set_get_supported_mip_versions_method(
1175 sink_comp_class,
1176 cc_full_descr->methods.sink.get_supported_mip_versions);
1177 if (ret) {
1178 BT_LIB_LOGE_APPEND_CAUSE(
1179 "Cannot set sink component class's \"get supported MIP versions\" method.");
1180 status = BT_FUNC_STATUS_MEMORY_ERROR;
1181 BT_OBJECT_PUT_REF_AND_RESET(sink_comp_class);
1182 goto end;
1183 }
1184 }
1185
d94d92ac 1186 if (cc_full_descr->methods.sink.init) {
0d72b8c3 1187 ret = bt_component_class_sink_set_init_method(
d94d92ac
PP
1188 sink_comp_class,
1189 cc_full_descr->methods.sink.init);
1190 if (ret) {
870631a2
PP
1191 BT_LIB_LOGE_APPEND_CAUSE(
1192 "Cannot set sink component class's initialization method.");
d24d5663 1193 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac
PP
1194 BT_OBJECT_PUT_REF_AND_RESET(sink_comp_class);
1195 goto end;
1196 }
1197 }
1198
1199 if (cc_full_descr->methods.sink.finalize) {
0d72b8c3 1200 ret = bt_component_class_sink_set_finalize_method(
d94d92ac
PP
1201 sink_comp_class,
1202 cc_full_descr->methods.sink.finalize);
1203 if (ret) {
870631a2
PP
1204 BT_LIB_LOGE_APPEND_CAUSE(
1205 "Cannot set sink component class's finalization method.");
d24d5663 1206 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac
PP
1207 BT_OBJECT_PUT_REF_AND_RESET(sink_comp_class);
1208 goto end;
1209 }
1210 }
1211
1212 if (cc_full_descr->methods.sink.query) {
0d72b8c3 1213 ret = bt_component_class_sink_set_query_method(
d94d92ac
PP
1214 sink_comp_class,
1215 cc_full_descr->methods.sink.query);
1216 if (ret) {
870631a2
PP
1217 BT_LIB_LOGE_APPEND_CAUSE(
1218 "Cannot set sink component class's query method.");
d24d5663 1219 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac
PP
1220 BT_OBJECT_PUT_REF_AND_RESET(sink_comp_class);
1221 goto end;
1222 }
1223 }
1224
d94d92ac 1225 if (cc_full_descr->methods.sink.input_port_connected) {
0d72b8c3 1226 ret = bt_component_class_sink_set_input_port_connected_method(
d94d92ac
PP
1227 sink_comp_class,
1228 cc_full_descr->methods.sink.input_port_connected);
1229 if (ret) {
870631a2
PP
1230 BT_LIB_LOGE_APPEND_CAUSE(
1231 "Cannot set sink component class's \"input port connected\" method.");
d24d5663 1232 status = BT_FUNC_STATUS_MEMORY_ERROR;
d94d92ac
PP
1233 BT_OBJECT_PUT_REF_AND_RESET(sink_comp_class);
1234 goto end;
1235 }
1236 }
1237
5badd463
PP
1238 if (cc_full_descr->methods.sink.graph_is_configured) {
1239 ret = bt_component_class_sink_set_graph_is_configured_method(
1240 sink_comp_class,
1241 cc_full_descr->methods.sink.graph_is_configured);
1242 if (ret) {
870631a2
PP
1243 BT_LIB_LOGE_APPEND_CAUSE(
1244 "Cannot set sink component class's \"graph is configured\" method.");
d24d5663 1245 status = BT_FUNC_STATUS_MEMORY_ERROR;
5badd463
PP
1246 BT_OBJECT_PUT_REF_AND_RESET(sink_comp_class);
1247 goto end;
1248 }
1249 }
1250
55bb57e0
PP
1251 break;
1252 default:
0fbb9a9f 1253 abort();
55bb57e0
PP
1254 }
1255
1256 /*
1257 * Add component class to the plugin object.
1258 *
1259 * This will call back
1260 * bt_plugin_so_on_add_component_class() so that we can
d94d92ac
PP
1261 * add a mapping in the component class list when we
1262 * know the component class is successfully added.
55bb57e0
PP
1263 */
1264 status = bt_plugin_add_component_class(plugin,
d94d92ac 1265 (void *) comp_class);
65300d60 1266 BT_OBJECT_PUT_REF_AND_RESET(comp_class);
55bb57e0 1267 if (status < 0) {
870631a2
PP
1268 BT_LIB_LOGE_APPEND_CAUSE(
1269 "Cannot add component class to plugin.");
55bb57e0
PP
1270 goto end;
1271 }
1272 }
1273
55bb57e0
PP
1274end:
1275 g_array_free(comp_class_full_descriptors, TRUE);
1276 return status;
1277}
1278
1279static
1280struct bt_plugin *bt_plugin_so_create_empty(
1281 struct bt_plugin_so_shared_lib_handle *shared_lib_handle)
1282{
1283 struct bt_plugin *plugin;
1284 struct bt_plugin_so_spec_data *spec;
1285
1286 plugin = bt_plugin_create_empty(BT_PLUGIN_TYPE_SO);
1287 if (!plugin) {
1288 goto error;
1289 }
1290
6fbd4105 1291 plugin->destroy_spec_data = bt_plugin_so_destroy_spec_data;
55bb57e0
PP
1292 plugin->spec_data = g_new0(struct bt_plugin_so_spec_data, 1);
1293 if (!plugin->spec_data) {
870631a2
PP
1294 BT_LIB_LOGE_APPEND_CAUSE(
1295 "Failed to allocate one SO plugin specific data structure.");
55bb57e0
PP
1296 goto error;
1297 }
1298
1299 spec = plugin->spec_data;
398454ed
PP
1300 spec->shared_lib_handle = shared_lib_handle;
1301 bt_object_get_no_null_check(spec->shared_lib_handle);
55bb57e0
PP
1302 goto end;
1303
1304error:
65300d60 1305 BT_OBJECT_PUT_REF_AND_RESET(plugin);
55bb57e0
PP
1306
1307end:
1308 return plugin;
1309}
1310
52238017
MJ
1311static
1312size_t count_non_null_items_in_section(const void *begin, const void *end)
1313{
1314 size_t count = 0;
1315 const int * const *begin_int = (const int * const *) begin;
1316 const int * const *end_int = (const int * const *) end;
1317 const int * const *iter;
1318
1319 for (iter = begin_int; iter != end_int; iter++) {
1320 if (*iter) {
1321 count++;
1322 }
1323 }
1324
1325 return count;
1326}
1327
55bb57e0 1328static
d24d5663 1329int bt_plugin_so_create_all_from_sections(
55bb57e0 1330 struct bt_plugin_so_shared_lib_handle *shared_lib_handle,
9736d991 1331 bool fail_on_load_error,
55bb57e0
PP
1332 struct __bt_plugin_descriptor const * const *descriptors_begin,
1333 struct __bt_plugin_descriptor const * const *descriptors_end,
1334 struct __bt_plugin_descriptor_attribute const * const *attrs_begin,
1335 struct __bt_plugin_descriptor_attribute const * const *attrs_end,
1336 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_begin,
1337 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_end,
1338 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_begin,
9736d991
PP
1339 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_end,
1340 struct bt_plugin_set **plugin_set_out)
55bb57e0 1341{
d24d5663 1342 int status = BT_FUNC_STATUS_OK;
55bb57e0
PP
1343 size_t descriptor_count;
1344 size_t attrs_count;
1345 size_t cc_descriptors_count;
1346 size_t cc_descr_attrs_count;
1347 size_t i;
55bb57e0 1348
829fbd63 1349 BT_ASSERT(shared_lib_handle);
9736d991
PP
1350 BT_ASSERT(plugin_set_out);
1351 *plugin_set_out = NULL;
52238017
MJ
1352 descriptor_count = count_non_null_items_in_section(descriptors_begin, descriptors_end);
1353 attrs_count = count_non_null_items_in_section(attrs_begin, attrs_end);
1354 cc_descriptors_count = count_non_null_items_in_section(cc_descriptors_begin, cc_descriptors_end);
1355 cc_descr_attrs_count = count_non_null_items_in_section(cc_descr_attrs_begin, cc_descr_attrs_end);
3f7d4d90 1356 BT_LOGI("Creating all SO plugins from sections: "
3fe0bf43
PP
1357 "plugin-path=\"%s\", "
1358 "descr-begin-addr=%p, descr-end-addr=%p, "
1359 "attrs-begin-addr=%p, attrs-end-addr=%p, "
1360 "cc-descr-begin-addr=%p, cc-descr-end-addr=%p, "
1361 "cc-descr-attrs-begin-addr=%p, cc-descr-attrs-end-addr=%p, "
1362 "descr-count=%zu, attrs-count=%zu, "
1363 "cc-descr-count=%zu, cc-descr-attrs-count=%zu",
1364 shared_lib_handle->path ? shared_lib_handle->path->str : NULL,
1365 descriptors_begin, descriptors_end,
1366 attrs_begin, attrs_end,
1367 cc_descriptors_begin, cc_descriptors_end,
1368 cc_descr_attrs_begin, cc_descr_attrs_end,
1369 descriptor_count, attrs_count,
1370 cc_descriptors_count, cc_descr_attrs_count);
9736d991
PP
1371 *plugin_set_out = bt_plugin_set_create();
1372 if (!*plugin_set_out) {
870631a2 1373 BT_LIB_LOGE_APPEND_CAUSE("Cannot create empty plugin set.");
d24d5663 1374 status = BT_FUNC_STATUS_MEMORY_ERROR;
55bb57e0
PP
1375 goto error;
1376 }
1377
52238017 1378 for (i = 0; i < descriptors_end - descriptors_begin; i++) {
55bb57e0
PP
1379 const struct __bt_plugin_descriptor *descriptor =
1380 descriptors_begin[i];
1381 struct bt_plugin *plugin;
1382
5084732e 1383 if (!descriptor) {
52238017
MJ
1384 continue;
1385 }
1386
3f7d4d90 1387 BT_LOGI("Creating plugin object for plugin: "
3fe0bf43
PP
1388 "name=\"%s\", abi-major=%d, abi-minor=%d",
1389 descriptor->name, descriptor->major, descriptor->minor);
55bb57e0
PP
1390
1391 if (descriptor->major > __BT_PLUGIN_VERSION_MAJOR) {
9736d991 1392 if (fail_on_load_error) {
870631a2
PP
1393 BT_LIB_LOGW_APPEND_CAUSE(
1394 "Unknown ABI major version: abi-major=%d",
1395 descriptor->major);
b189a968 1396 status = BT_FUNC_STATUS_ERROR;
9736d991
PP
1397 goto error;
1398 } else {
a0cdfce8 1399 BT_LIB_LOGW(
870631a2
PP
1400 "Unknown ABI major version: abi-major=%d",
1401 descriptor->major);
9736d991
PP
1402 continue;
1403 }
55bb57e0
PP
1404 }
1405
1406 plugin = bt_plugin_so_create_empty(shared_lib_handle);
1407 if (!plugin) {
870631a2
PP
1408 BT_LIB_LOGE_APPEND_CAUSE(
1409 "Cannot create empty shared library handle.");
d24d5663 1410 status = BT_FUNC_STATUS_MEMORY_ERROR;
55bb57e0
PP
1411 goto error;
1412 }
1413
ea251e8b 1414 if (shared_lib_handle->path) {
9736d991
PP
1415 bt_plugin_set_path(plugin,
1416 shared_lib_handle->path->str);
55bb57e0
PP
1417 }
1418
9736d991
PP
1419 status = bt_plugin_so_init(plugin, fail_on_load_error,
1420 descriptor, attrs_begin, attrs_end,
1421 cc_descriptors_begin, cc_descriptors_end,
55bb57e0 1422 cc_descr_attrs_begin, cc_descr_attrs_end);
d24d5663 1423 if (status == BT_FUNC_STATUS_OK) {
9736d991
PP
1424 /* Add to plugin set */
1425 bt_plugin_set_add_plugin(*plugin_set_out, plugin);
1426 BT_OBJECT_PUT_REF_AND_RESET(plugin);
1427 } else if (status < 0) {
50ad9320 1428 /*
9736d991
PP
1429 * bt_plugin_so_init() handles
1430 * `fail_on_load_error`, so this is a "real"
1431 * error.
50ad9320 1432 */
870631a2
PP
1433 BT_LIB_LOGW_APPEND_CAUSE(
1434 "Cannot initialize SO plugin object from sections.");
65300d60 1435 BT_OBJECT_PUT_REF_AND_RESET(plugin);
55bb57e0
PP
1436 goto error;
1437 }
1438
9736d991
PP
1439 BT_ASSERT(!plugin);
1440 }
1441
1442 BT_ASSERT(*plugin_set_out);
1443
1444 if ((*plugin_set_out)->plugins->len == 0) {
1445 BT_OBJECT_PUT_REF_AND_RESET(*plugin_set_out);
d24d5663 1446 status = BT_FUNC_STATUS_NOT_FOUND;
55bb57e0
PP
1447 }
1448
1449 goto end;
1450
1451error:
9736d991
PP
1452 BT_ASSERT(status < 0);
1453 BT_OBJECT_PUT_REF_AND_RESET(*plugin_set_out);
55bb57e0
PP
1454
1455end:
9736d991 1456 return status;
55bb57e0
PP
1457}
1458
1459BT_HIDDEN
d24d5663 1460int bt_plugin_so_create_all_from_static(bool fail_on_load_error,
9736d991 1461 struct bt_plugin_set **plugin_set_out)
55bb57e0 1462{
d24d5663 1463 int status;
9736d991 1464 struct bt_plugin_so_shared_lib_handle *shared_lib_handle = NULL;
55bb57e0 1465
9736d991
PP
1466 BT_ASSERT(plugin_set_out);
1467 *plugin_set_out = NULL;
1468 status = bt_plugin_so_shared_lib_handle_create(NULL,
1469 &shared_lib_handle);
d24d5663 1470 if (status != BT_FUNC_STATUS_OK) {
9736d991 1471 BT_ASSERT(!shared_lib_handle);
55bb57e0
PP
1472 goto end;
1473 }
1474
9736d991 1475 BT_ASSERT(shared_lib_handle);
3fe0bf43 1476 BT_LOGD_STR("Creating all SO plugins from built-in plugins.");
9736d991
PP
1477 status = bt_plugin_so_create_all_from_sections(shared_lib_handle,
1478 fail_on_load_error,
52238017
MJ
1479 __bt_get_begin_section_plugin_descriptors(),
1480 __bt_get_end_section_plugin_descriptors(),
1481 __bt_get_begin_section_plugin_descriptor_attributes(),
1482 __bt_get_end_section_plugin_descriptor_attributes(),
1483 __bt_get_begin_section_component_class_descriptors(),
1484 __bt_get_end_section_component_class_descriptors(),
1485 __bt_get_begin_section_component_class_descriptor_attributes(),
9736d991
PP
1486 __bt_get_end_section_component_class_descriptor_attributes(),
1487 plugin_set_out);
d24d5663 1488 BT_ASSERT((status == BT_FUNC_STATUS_OK && *plugin_set_out &&
9736d991 1489 (*plugin_set_out)->plugins->len > 0) || !*plugin_set_out);
55bb57e0
PP
1490
1491end:
65300d60 1492 BT_OBJECT_PUT_REF_AND_RESET(shared_lib_handle);
9736d991 1493 return status;
55bb57e0
PP
1494}
1495
1496BT_HIDDEN
d24d5663 1497int bt_plugin_so_create_all_from_file(const char *path,
9736d991 1498 bool fail_on_load_error, struct bt_plugin_set **plugin_set_out)
55bb57e0
PP
1499{
1500 size_t path_len;
d24d5663 1501 int status;
55bb57e0
PP
1502 struct __bt_plugin_descriptor const * const *descriptors_begin = NULL;
1503 struct __bt_plugin_descriptor const * const *descriptors_end = NULL;
1504 struct __bt_plugin_descriptor_attribute const * const *attrs_begin = NULL;
1505 struct __bt_plugin_descriptor_attribute const * const *attrs_end = NULL;
1506 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_begin = NULL;
1507 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_end = NULL;
1508 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_begin = NULL;
1509 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_end = NULL;
52238017
MJ
1510 struct __bt_plugin_descriptor const * const *(*get_begin_section_plugin_descriptors)(void);
1511 struct __bt_plugin_descriptor const * const *(*get_end_section_plugin_descriptors)(void);
1512 struct __bt_plugin_descriptor_attribute const * const *(*get_begin_section_plugin_descriptor_attributes)(void);
1513 struct __bt_plugin_descriptor_attribute const * const *(*get_end_section_plugin_descriptor_attributes)(void);
1514 struct __bt_plugin_component_class_descriptor const * const *(*get_begin_section_component_class_descriptors)(void);
1515 struct __bt_plugin_component_class_descriptor const * const *(*get_end_section_component_class_descriptors)(void);
1516 struct __bt_plugin_component_class_descriptor_attribute const * const *(*get_begin_section_component_class_descriptor_attributes)(void);
1517 struct __bt_plugin_component_class_descriptor_attribute const * const *(*get_end_section_component_class_descriptor_attributes)(void);
c55a9f58 1518 bt_bool is_libtool_wrapper = BT_FALSE, is_shared_object = BT_FALSE;
55bb57e0
PP
1519 struct bt_plugin_so_shared_lib_handle *shared_lib_handle = NULL;
1520
3f7d4d90 1521 BT_ASSERT(path);
9736d991
PP
1522 BT_ASSERT(plugin_set_out);
1523 *plugin_set_out = NULL;
55bb57e0 1524 path_len = strlen(path);
3f7d4d90
PP
1525 BT_ASSERT_PRE(path_len > PLUGIN_SUFFIX_LEN,
1526 "Path length is too short: path-length=%zu, min-length=%zu",
1527 path_len, PLUGIN_SUFFIX_LEN);
1528 BT_LOGI("Trying to create all SO plugins from file: path=\"%s\"", path);
55bb57e0 1529 path_len++;
3f7d4d90 1530
55bb57e0 1531 /*
3f7d4d90
PP
1532 * Check if the file ends with a known plugin file type suffix
1533 * (i.e. .so or .la on Linux).
55bb57e0
PP
1534 */
1535 is_libtool_wrapper = !strncmp(LIBTOOL_PLUGIN_SUFFIX,
1536 path + path_len - LIBTOOL_PLUGIN_SUFFIX_LEN,
1537 LIBTOOL_PLUGIN_SUFFIX_LEN);
1538 is_shared_object = !strncmp(NATIVE_PLUGIN_SUFFIX,
1539 path + path_len - NATIVE_PLUGIN_SUFFIX_LEN,
1540 NATIVE_PLUGIN_SUFFIX_LEN);
1541 if (!is_shared_object && !is_libtool_wrapper) {
3fe0bf43 1542 /* Name indicates this is not a plugin file; not an error */
9736d991 1543 BT_LOGI("File is not an SO plugin file: path=\"%s\"", path);
d24d5663 1544 status = BT_FUNC_STATUS_NOT_FOUND;
55bb57e0
PP
1545 goto end;
1546 }
1547
9736d991
PP
1548 status = bt_plugin_so_shared_lib_handle_create(path,
1549 &shared_lib_handle);
d24d5663 1550 if (status != BT_FUNC_STATUS_OK) {
3f7d4d90 1551 /* bt_plugin_so_shared_lib_handle_create() logs more details */
9736d991 1552 BT_ASSERT(!shared_lib_handle);
55bb57e0
PP
1553 goto end;
1554 }
1555
52238017
MJ
1556 if (g_module_symbol(shared_lib_handle->module, "__bt_get_begin_section_plugin_descriptors",
1557 (gpointer *) &get_begin_section_plugin_descriptors)) {
1558 descriptors_begin = get_begin_section_plugin_descriptors();
1559 } else {
9736d991
PP
1560 /*
1561 * Use this first symbol to know whether or not this
1562 * shared object _looks like_ a Babeltrace plugin. Since
1563 * g_module_symbol() failed, assume that this is not a
1564 * Babeltrace plugin, so it's not an error.
1565 */
3f7d4d90 1566 BT_LOGI("Cannot resolve plugin symbol: path=\"%s\", "
3fe0bf43 1567 "symbol=\"%s\"", path,
52238017 1568 "__bt_get_begin_section_plugin_descriptors");
d24d5663 1569 status = BT_FUNC_STATUS_NOT_FOUND;
55bb57e0
PP
1570 goto end;
1571 }
1572
9736d991
PP
1573 /*
1574 * If g_module_symbol() fails for any of the other symbols, fail
1575 * if `fail_on_load_error` is true.
1576 */
52238017
MJ
1577 if (g_module_symbol(shared_lib_handle->module, "__bt_get_end_section_plugin_descriptors",
1578 (gpointer *) &get_end_section_plugin_descriptors)) {
1579 descriptors_end = get_end_section_plugin_descriptors();
1580 } else {
870631a2
PP
1581 if (fail_on_load_error) {
1582 BT_LIB_LOGW_APPEND_CAUSE(
1583 "Cannot resolve plugin symbol: path=\"%s\", "
1584 "symbol=\"%s\"", path,
1585 "__bt_get_end_section_plugin_descriptors");
b189a968 1586 status = BT_FUNC_STATUS_ERROR;
870631a2 1587 } else {
a0cdfce8 1588 BT_LIB_LOGW(
870631a2
PP
1589 "Cannot resolve plugin symbol: path=\"%s\", "
1590 "symbol=\"%s\"", path,
1591 "__bt_get_end_section_plugin_descriptors");
1592 status = BT_FUNC_STATUS_NOT_FOUND;
1593 }
1594
55bb57e0
PP
1595 goto end;
1596 }
1597
52238017
MJ
1598 if (g_module_symbol(shared_lib_handle->module, "__bt_get_begin_section_plugin_descriptor_attributes",
1599 (gpointer *) &get_begin_section_plugin_descriptor_attributes)) {
1600 attrs_begin = get_begin_section_plugin_descriptor_attributes();
1601 } else {
3f7d4d90 1602 BT_LOGI("Cannot resolve plugin symbol: path=\"%s\", "
3fe0bf43 1603 "symbol=\"%s\"", path,
52238017 1604 "__bt_get_begin_section_plugin_descriptor_attributes");
55bb57e0
PP
1605 }
1606
52238017
MJ
1607 if (g_module_symbol(shared_lib_handle->module, "__bt_get_end_section_plugin_descriptor_attributes",
1608 (gpointer *) &get_end_section_plugin_descriptor_attributes)) {
1609 attrs_end = get_end_section_plugin_descriptor_attributes();
1610 } else {
3f7d4d90 1611 BT_LOGI("Cannot resolve plugin symbol: path=\"%s\", "
3fe0bf43 1612 "symbol=\"%s\"", path,
52238017 1613 "__bt_get_end_section_plugin_descriptor_attributes");
55bb57e0
PP
1614 }
1615
1616 if ((!!attrs_begin - !!attrs_end) != 0) {
870631a2
PP
1617 if (fail_on_load_error) {
1618 BT_LIB_LOGW_APPEND_CAUSE(
1619 "Found section start or end symbol, but not both: "
1620 "path=\"%s\", symbol-start=\"%s\", "
1621 "symbol-end=\"%s\", symbol-start-addr=%p, "
1622 "symbol-end-addr=%p",
1623 path, "__bt_get_begin_section_plugin_descriptor_attributes",
1624 "__bt_get_end_section_plugin_descriptor_attributes",
1625 attrs_begin, attrs_end);
b189a968 1626 status = BT_FUNC_STATUS_ERROR;
870631a2 1627 } else {
a0cdfce8 1628 BT_LIB_LOGW(
870631a2
PP
1629 "Found section start or end symbol, but not both: "
1630 "path=\"%s\", symbol-start=\"%s\", "
1631 "symbol-end=\"%s\", symbol-start-addr=%p, "
1632 "symbol-end-addr=%p",
1633 path, "__bt_get_begin_section_plugin_descriptor_attributes",
1634 "__bt_get_end_section_plugin_descriptor_attributes",
1635 attrs_begin, attrs_end);
1636 status = BT_FUNC_STATUS_NOT_FOUND;
1637 }
1638
55bb57e0
PP
1639 goto end;
1640 }
1641
52238017
MJ
1642 if (g_module_symbol(shared_lib_handle->module, "__bt_get_begin_section_component_class_descriptors",
1643 (gpointer *) &get_begin_section_component_class_descriptors)) {
1644 cc_descriptors_begin = get_begin_section_component_class_descriptors();
1645 } else {
3f7d4d90 1646 BT_LOGI("Cannot resolve plugin symbol: path=\"%s\", "
3fe0bf43 1647 "symbol=\"%s\"", path,
52238017 1648 "__bt_get_begin_section_component_class_descriptors");
55bb57e0
PP
1649 }
1650
52238017
MJ
1651 if (g_module_symbol(shared_lib_handle->module, "__bt_get_end_section_component_class_descriptors",
1652 (gpointer *) &get_end_section_component_class_descriptors)) {
1653 cc_descriptors_end = get_end_section_component_class_descriptors();
1654 } else {
3f7d4d90 1655 BT_LOGI("Cannot resolve plugin symbol: path=\"%s\", "
3fe0bf43 1656 "symbol=\"%s\"", path,
52238017 1657 "__bt_get_end_section_component_class_descriptors");
55bb57e0
PP
1658 }
1659
1660 if ((!!cc_descriptors_begin - !!cc_descriptors_end) != 0) {
870631a2
PP
1661 if (fail_on_load_error) {
1662 BT_LIB_LOGW_APPEND_CAUSE(
1663 "Found section start or end symbol, but not both: "
1664 "path=\"%s\", symbol-start=\"%s\", "
1665 "symbol-end=\"%s\", symbol-start-addr=%p, "
1666 "symbol-end-addr=%p",
1667 path, "__bt_get_begin_section_component_class_descriptors",
1668 "__bt_get_end_section_component_class_descriptors",
1669 cc_descriptors_begin, cc_descriptors_end);
b189a968 1670 status = BT_FUNC_STATUS_ERROR;
870631a2 1671 } else {
a0cdfce8 1672 BT_LIB_LOGW(
870631a2
PP
1673 "Found section start or end symbol, but not both: "
1674 "path=\"%s\", symbol-start=\"%s\", "
1675 "symbol-end=\"%s\", symbol-start-addr=%p, "
1676 "symbol-end-addr=%p",
1677 path, "__bt_get_begin_section_component_class_descriptors",
1678 "__bt_get_end_section_component_class_descriptors",
1679 cc_descriptors_begin, cc_descriptors_end);
1680 status = BT_FUNC_STATUS_NOT_FOUND;
1681 }
1682
55bb57e0
PP
1683 goto end;
1684 }
1685
52238017
MJ
1686 if (g_module_symbol(shared_lib_handle->module, "__bt_get_begin_section_component_class_descriptor_attributes",
1687 (gpointer *) &get_begin_section_component_class_descriptor_attributes)) {
1688 cc_descr_attrs_begin = get_begin_section_component_class_descriptor_attributes();
1689 } else {
3f7d4d90 1690 BT_LOGI("Cannot resolve plugin symbol: path=\"%s\", "
3fe0bf43 1691 "symbol=\"%s\"", path,
52238017 1692 "__bt_get_begin_section_component_class_descriptor_attributes");
55bb57e0
PP
1693 }
1694
52238017
MJ
1695 if (g_module_symbol(shared_lib_handle->module, "__bt_get_end_section_component_class_descriptor_attributes",
1696 (gpointer *) &get_end_section_component_class_descriptor_attributes)) {
1697 cc_descr_attrs_end = get_end_section_component_class_descriptor_attributes();
1698 } else {
3f7d4d90 1699 BT_LOGI("Cannot resolve plugin symbol: path=\"%s\", "
3fe0bf43 1700 "symbol=\"%s\"", path,
52238017 1701 "__bt_get_end_section_component_class_descriptor_attributes");
55bb57e0
PP
1702 }
1703
1704 if ((!!cc_descr_attrs_begin - !!cc_descr_attrs_end) != 0) {
870631a2
PP
1705 if (fail_on_load_error) {
1706 BT_LIB_LOGW_APPEND_CAUSE(
1707 "Found section start or end symbol, but not both: "
1708 "path=\"%s\", symbol-start=\"%s\", "
1709 "symbol-end=\"%s\", symbol-start-addr=%p, "
1710 "symbol-end-addr=%p",
1711 path, "__bt_get_begin_section_component_class_descriptor_attributes",
1712 "__bt_get_end_section_component_class_descriptor_attributes",
1713 cc_descr_attrs_begin, cc_descr_attrs_end);
b189a968 1714 status = BT_FUNC_STATUS_ERROR;
870631a2 1715 } else {
a0cdfce8 1716 BT_LIB_LOGW(
870631a2
PP
1717 "Found section start or end symbol, but not both: "
1718 "path=\"%s\", symbol-start=\"%s\", "
1719 "symbol-end=\"%s\", symbol-start-addr=%p, "
1720 "symbol-end-addr=%p",
1721 path, "__bt_get_begin_section_component_class_descriptor_attributes",
1722 "__bt_get_end_section_component_class_descriptor_attributes",
1723 cc_descr_attrs_begin, cc_descr_attrs_end);
1724 status = BT_FUNC_STATUS_NOT_FOUND;
1725 }
1726
55bb57e0
PP
1727 goto end;
1728 }
1729
1730 /* Initialize plugin */
3fe0bf43 1731 BT_LOGD_STR("Initializing plugin object.");
9736d991
PP
1732 status = bt_plugin_so_create_all_from_sections(shared_lib_handle,
1733 fail_on_load_error,
55bb57e0
PP
1734 descriptors_begin, descriptors_end, attrs_begin, attrs_end,
1735 cc_descriptors_begin, cc_descriptors_end,
9736d991 1736 cc_descr_attrs_begin, cc_descr_attrs_end, plugin_set_out);
55bb57e0
PP
1737
1738end:
65300d60 1739 BT_OBJECT_PUT_REF_AND_RESET(shared_lib_handle);
9736d991 1740 return status;
55bb57e0
PP
1741}
1742
1743static
1744void plugin_comp_class_destroy_listener(struct bt_component_class *comp_class,
1745 void *data)
1746{
bfa9a4be 1747 bt_list_del(&comp_class->node);
65300d60 1748 BT_OBJECT_PUT_REF_AND_RESET(comp_class->so_handle);
3f7d4d90 1749 BT_LOGD("Component class destroyed: removed entry from list: "
3fe0bf43 1750 "comp-cls-addr=%p", comp_class);
55bb57e0
PP
1751}
1752
3230ee6b 1753void bt_plugin_so_on_add_component_class(struct bt_plugin *plugin,
55bb57e0
PP
1754 struct bt_component_class *comp_class)
1755{
55bb57e0
PP
1756 struct bt_plugin_so_spec_data *spec = plugin->spec_data;
1757
f6ccaed9
PP
1758 BT_ASSERT(plugin->spec_data);
1759 BT_ASSERT(plugin->type == BT_PLUGIN_TYPE_SO);
55bb57e0 1760
bfa9a4be 1761 bt_list_add(&comp_class->node, &component_class_list);
398454ed
PP
1762 comp_class->so_handle = spec->shared_lib_handle;
1763 bt_object_get_no_null_check(comp_class->so_handle);
55bb57e0
PP
1764
1765 /* Add our custom destroy listener */
3230ee6b 1766 bt_component_class_add_destroy_listener(comp_class,
55bb57e0 1767 plugin_comp_class_destroy_listener, NULL);
55bb57e0 1768}
This page took 0.139574 seconds and 4 git commands to generate.