Rename text.text sink CC to text.pretty
[babeltrace.git] / lib / plugin / plugin-so.c
CommitLineData
55bb57e0
PP
1/*
2 * plugin-so.c
3 *
4 * Babeltrace Plugin (shared object)
5 *
6 * Copyright 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
8 *
9 * Author: Jérémie Galarneau <jeremie.galarneau@efficios.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a copy
12 * of this software and associated documentation files (the "Software"), to deal
13 * in the Software without restriction, including without limitation the rights
14 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15 * copies of the Software, and to permit persons to whom the Software is
16 * furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 * SOFTWARE.
28 */
29
3d9990ac 30#include <babeltrace/compiler-internal.h>
55bb57e0
PP
31#include <babeltrace/ref.h>
32#include <babeltrace/plugin/plugin-internal.h>
33#include <babeltrace/plugin/plugin-so-internal.h>
34#include <babeltrace/plugin/plugin-dev.h>
35#include <babeltrace/plugin/plugin-internal.h>
b2e0c907 36#include <babeltrace/graph/component-class-internal.h>
55bb57e0
PP
37#include <string.h>
38#include <stdbool.h>
39#include <glib.h>
40#include <gmodule.h>
41
42#define NATIVE_PLUGIN_SUFFIX ".so"
43#define NATIVE_PLUGIN_SUFFIX_LEN sizeof(NATIVE_PLUGIN_SUFFIX)
44#define LIBTOOL_PLUGIN_SUFFIX ".la"
45#define LIBTOOL_PLUGIN_SUFFIX_LEN sizeof(LIBTOOL_PLUGIN_SUFFIX)
46
47#define PLUGIN_SUFFIX_LEN max_t(size_t, sizeof(NATIVE_PLUGIN_SUFFIX), \
48 sizeof(LIBTOOL_PLUGIN_SUFFIX))
49
50#define SECTION_BEGIN(_name) (&(__start_##_name))
51#define SECTION_END(_name) (&(__stop_##_name))
52#define SECTION_ELEMENT_COUNT(_name) (SECTION_END(_name) - SECTION_BEGIN(_name))
53
54#define DECLARE_SECTION(_type, _name) \
55 extern _type __start_##_name __attribute((weak)); \
56 extern _type __stop_##_name __attribute((weak))
57
58DECLARE_SECTION(struct __bt_plugin_descriptor const *, __bt_plugin_descriptors);
59DECLARE_SECTION(struct __bt_plugin_descriptor_attribute const *, __bt_plugin_descriptor_attributes);
60DECLARE_SECTION(struct __bt_plugin_component_class_descriptor const *, __bt_plugin_component_class_descriptors);
61DECLARE_SECTION(struct __bt_plugin_component_class_descriptor_attribute const *, __bt_plugin_component_class_descriptor_attributes);
62
63/*
64 * This hash table, global to the library, maps component class pointers
65 * to shared library handles.
66 *
67 * The keys (component classes) are NOT owned by this hash table, whereas
68 * the values (shared library handles) are owned by this hash table.
69 *
70 * The keys are the component classes created with
71 * bt_plugin_add_component_class(). They keep the shared library handle
72 * object created by their plugin alive so that the plugin's code is
73 * not discarded when it could still be in use by living components
74 * created from those component classes:
75 *
76 * [component] --ref-> [component class] --through this HT-> [shlib handle]
77 *
78 * This hash table exists for two reasons:
79 *
80 * 1. To allow this application:
81 *
82 * my_plugins = bt_plugin_create_all_from_file("/path/to/my-plugin.so");
83 * // instantiate components from a plugin's component classes
84 * // put plugins and free my_plugins here
85 * // user code of instantiated components still exists
86 *
87 * 2. To decouple the plugin subsystem from the component subsystem:
88 * while plugins objects need to know component class objects, the
89 * opposite is not necessary, thus it makes no sense for a component
90 * class to keep a reference to the plugin object from which it was
91 * created.
92 *
93 * An entry is removed from this HT when a component class is destroyed
94 * thanks to a custom destroy listener. When the entry is removed, the
95 * GLib function calls the value destroy notifier of the HT, which is
96 * bt_put(). This decreases the reference count of the mapped shared
97 * library handle. Assuming the original plugin object which contained
98 * some component classes is put first, when the last component class is
99 * removed from this HT, the shared library handle object's reference
100 * count falls to zero and the shared library is finally closed.
101 */
102static
103GHashTable *comp_classes_to_shlib_handles;
104
105__attribute__((constructor)) static
106void init_comp_classes_to_shlib_handles(void) {
107 comp_classes_to_shlib_handles = g_hash_table_new_full(g_direct_hash,
108 g_direct_equal, NULL, bt_put);
109 assert(comp_classes_to_shlib_handles);
110}
111
112__attribute__((destructor)) static
113void fini_comp_classes_to_shlib_handles(void) {
114 if (comp_classes_to_shlib_handles) {
115 g_hash_table_destroy(comp_classes_to_shlib_handles);
116 }
117}
118
119static
120void bt_plugin_so_shared_lib_handle_destroy(struct bt_object *obj)
121{
122 struct bt_plugin_so_shared_lib_handle *shared_lib_handle;
123
124 assert(obj);
125 shared_lib_handle = container_of(obj,
126 struct bt_plugin_so_shared_lib_handle, base);
127
128 if (shared_lib_handle->init_called && shared_lib_handle->exit) {
129 enum bt_plugin_status status = shared_lib_handle->exit();
130
131 if (status < 0) {
132 const char *path = shared_lib_handle->path ?
133 shared_lib_handle->path->str : "[built-in]";
134
135 printf_verbose("Plugin in module `%s` exited with error %d\n",
136 path, status);
137 }
138 }
139
140 if (shared_lib_handle->module) {
141 if (!g_module_close(shared_lib_handle->module)) {
142 printf_error("Module close error: %s\n",
143 g_module_error());
144 }
145 }
146
147 if (shared_lib_handle->path) {
148 g_string_free(shared_lib_handle->path, TRUE);
149 }
150
151 g_free(shared_lib_handle);
152}
153
154static
155struct bt_plugin_so_shared_lib_handle *bt_plugin_so_shared_lib_handle_create(
156 const char *path)
157{
158 struct bt_plugin_so_shared_lib_handle *shared_lib_handle = NULL;
159
160 shared_lib_handle = g_new0(struct bt_plugin_so_shared_lib_handle, 1);
161 if (!shared_lib_handle) {
162 goto error;
163 }
164
165 bt_object_init(shared_lib_handle, bt_plugin_so_shared_lib_handle_destroy);
166
167 if (!path) {
168 goto end;
169 }
170
171 shared_lib_handle->path = g_string_new(path);
172 if (!shared_lib_handle->path) {
173 goto error;
174 }
175
176 shared_lib_handle->module = g_module_open(path, 0);
177 if (!shared_lib_handle->module) {
178 printf_verbose("Module open error: %s\n", g_module_error());
179 goto error;
180 }
181
182 goto end;
183
184error:
185 BT_PUT(shared_lib_handle);
186
187end:
188 return shared_lib_handle;
189}
190
6fbd4105 191static
55bb57e0
PP
192void bt_plugin_so_destroy_spec_data(struct bt_plugin *plugin)
193{
194 struct bt_plugin_so_spec_data *spec = plugin->spec_data;
195
196 if (!plugin->spec_data) {
197 return;
198 }
199
200 assert(plugin->type == BT_PLUGIN_TYPE_SO);
201 assert(spec);
202 BT_PUT(spec->shared_lib_handle);
203 g_free(plugin->spec_data);
204 plugin->spec_data = NULL;
205}
206
207/*
208 * This function does the following:
209 *
210 * 1. Iterate on the plugin descriptor attributes section and set the
211 * plugin's attributes depending on the attribute types. This
212 * includes the name of the plugin, its description, and its
213 * initialization function, for example.
214 *
215 * 2. Iterate on the component class descriptors section and create one
216 * "full descriptor" (temporary structure) for each one that is found
217 * and attached to our plugin descriptor.
218 *
219 * 3. Iterate on the component class descriptor attributes section and
220 * set the corresponding full descriptor's attributes depending on
221 * the attribute types. This includes the description of the
222 * component class, as well as its initialization and destroy
223 * methods.
224 *
225 * 4. Call the user's plugin initialization function, if any is
226 * defined.
227 *
228 * 5. For each full component class descriptor, create a component class
229 * object, set its optional attributes, and add it to the plugin
230 * object.
231 *
232 * 6. Freeze the plugin object.
233 */
234static
235enum bt_plugin_status bt_plugin_so_init(
236 struct bt_plugin *plugin,
237 const struct __bt_plugin_descriptor *descriptor,
238 struct __bt_plugin_descriptor_attribute const * const *attrs_begin,
239 struct __bt_plugin_descriptor_attribute const * const *attrs_end,
240 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_begin,
241 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_end,
242 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_begin,
243 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_end)
244{
245 /*
246 * This structure's members point to the plugin's memory
247 * (do NOT free).
248 */
249 struct comp_class_full_descriptor {
250 const struct __bt_plugin_component_class_descriptor *descriptor;
251 const char *description;
279b3f15 252 const char *help;
55bb57e0 253 bt_component_class_init_method init_method;
64cadc66 254 bt_component_class_finalize_method finalize_method;
a67681c1 255 bt_component_class_query_method query_method;
72b913fb
PP
256 bt_component_class_accept_port_connection_method accept_port_connection_method;
257 bt_component_class_port_disconnected_method port_disconnected_method;
55bb57e0
PP
258 struct bt_component_class_iterator_methods iterator_methods;
259 };
260
261 enum bt_plugin_status status = BT_PLUGIN_STATUS_OK;
262 struct __bt_plugin_descriptor_attribute const * const *cur_attr_ptr;
263 struct __bt_plugin_component_class_descriptor const * const *cur_cc_descr_ptr;
264 struct __bt_plugin_component_class_descriptor_attribute const * const *cur_cc_descr_attr_ptr;
265 struct bt_plugin_so_spec_data *spec = plugin->spec_data;
266 GArray *comp_class_full_descriptors;
267 size_t i;
268 int ret;
269
270 comp_class_full_descriptors = g_array_new(FALSE, TRUE,
271 sizeof(struct comp_class_full_descriptor));
272 if (!comp_class_full_descriptors) {
273 status = BT_PLUGIN_STATUS_ERROR;
274 goto end;
275 }
276
277 /* Set mandatory attributes */
278 spec->descriptor = descriptor;
279 bt_plugin_set_name(plugin, descriptor->name);
280
281 /*
282 * Find and set optional attributes attached to this plugin
283 * descriptor.
284 */
285 for (cur_attr_ptr = attrs_begin; cur_attr_ptr != attrs_end; cur_attr_ptr++) {
286 const struct __bt_plugin_descriptor_attribute *cur_attr =
287 *cur_attr_ptr;
288
289 if (cur_attr->plugin_descriptor != descriptor) {
290 continue;
291 }
292
293 switch (cur_attr->type) {
294 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_INIT:
295 spec->init = cur_attr->value.init;
296 break;
297 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_EXIT:
298 spec->shared_lib_handle->exit = cur_attr->value.exit;
299 break;
300 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_AUTHOR:
301 bt_plugin_set_author(plugin, cur_attr->value.author);
302 break;
303 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_LICENSE:
304 bt_plugin_set_license(plugin, cur_attr->value.license);
305 break;
306 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_DESCRIPTION:
307 bt_plugin_set_description(plugin, cur_attr->value.description);
308 break;
309 case BT_PLUGIN_DESCRIPTOR_ATTRIBUTE_TYPE_VERSION:
310 bt_plugin_set_version(plugin,
311 (unsigned int) cur_attr->value.version.major,
312 (unsigned int) cur_attr->value.version.minor,
313 (unsigned int) cur_attr->value.version.patch,
314 cur_attr->value.version.extra);
315 break;
316 default:
317 printf_verbose("WARNING: Unknown attribute \"%s\" (type %d) for plugin %s\n",
318 cur_attr->type_name, cur_attr->type,
319 descriptor->name);
320 break;
321 }
322 }
323
324 /*
325 * Find component class descriptors attached to this plugin
326 * descriptor and initialize corresponding full component class
327 * descriptors in the array.
328 */
329 for (cur_cc_descr_ptr = cc_descriptors_begin; cur_cc_descr_ptr != cc_descriptors_end; cur_cc_descr_ptr++) {
330 const struct __bt_plugin_component_class_descriptor *cur_cc_descr =
331 *cur_cc_descr_ptr;
332 struct comp_class_full_descriptor full_descriptor = {0};
333
334 if (cur_cc_descr->plugin_descriptor != descriptor) {
335 continue;
336 }
337
338 full_descriptor.descriptor = cur_cc_descr;
339 g_array_append_val(comp_class_full_descriptors,
340 full_descriptor);
341 }
342
343 /*
344 * Find component class descriptor attributes attached to this
345 * plugin descriptor and update corresponding full component
346 * class descriptors in the array.
347 */
348 for (cur_cc_descr_attr_ptr = cc_descr_attrs_begin; cur_cc_descr_attr_ptr != cc_descr_attrs_end; cur_cc_descr_attr_ptr++) {
349 const struct __bt_plugin_component_class_descriptor_attribute *cur_cc_descr_attr =
350 *cur_cc_descr_attr_ptr;
351
352 if (cur_cc_descr_attr->comp_class_descriptor->plugin_descriptor !=
353 descriptor) {
354 continue;
355 }
356
357 /* Find the corresponding component class descriptor entry */
358 for (i = 0; i < comp_class_full_descriptors->len; i++) {
359 struct comp_class_full_descriptor *cc_full_descr =
360 &g_array_index(comp_class_full_descriptors,
361 struct comp_class_full_descriptor, i);
362
363 if (cur_cc_descr_attr->comp_class_descriptor ==
364 cc_full_descr->descriptor) {
365 switch (cur_cc_descr_attr->type) {
366 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_DESCRIPTION:
367 cc_full_descr->description =
368 cur_cc_descr_attr->value.description;
369 break;
279b3f15
PP
370 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_HELP:
371 cc_full_descr->help =
372 cur_cc_descr_attr->value.help;
373 break;
55bb57e0
PP
374 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_INIT_METHOD:
375 cc_full_descr->init_method =
376 cur_cc_descr_attr->value.init_method;
377 break;
64cadc66
PP
378 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_FINALIZE_METHOD:
379 cc_full_descr->finalize_method =
380 cur_cc_descr_attr->value.finalize_method;
55bb57e0 381 break;
a67681c1
PP
382 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_QUERY_METHOD:
383 cc_full_descr->query_method =
384 cur_cc_descr_attr->value.query_method;
8463eac2 385 break;
72b913fb
PP
386 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_ACCEPT_PORT_CONNECTION_METHOD:
387 cc_full_descr->accept_port_connection_method =
388 cur_cc_descr_attr->value.accept_port_connection_method;
389 break;
390 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_PORT_DISCONNECTED_METHOD:
391 cc_full_descr->port_disconnected_method =
392 cur_cc_descr_attr->value.port_disconnected_method;
55bb57e0
PP
393 break;
394 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_NOTIF_ITER_INIT_METHOD:
395 cc_full_descr->iterator_methods.init =
396 cur_cc_descr_attr->value.notif_iter_init_method;
397 break;
64cadc66
PP
398 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_NOTIF_ITER_FINALIZE_METHOD:
399 cc_full_descr->iterator_methods.finalize =
400 cur_cc_descr_attr->value.notif_iter_finalize_method;
55bb57e0
PP
401 break;
402 case BT_PLUGIN_COMPONENT_CLASS_DESCRIPTOR_ATTRIBUTE_TYPE_NOTIF_ITER_SEEK_TIME_METHOD:
403 cc_full_descr->iterator_methods.seek_time =
404 cur_cc_descr_attr->value.notif_iter_seek_time_method;
405 break;
406 default:
407 printf_verbose("WARNING: Unknown attribute \"%s\" (type %d) for component class %s (type %d) in plugin %s\n",
408 cur_cc_descr_attr->type_name,
409 cur_cc_descr_attr->type,
410 cur_cc_descr_attr->comp_class_descriptor->name,
411 cur_cc_descr_attr->comp_class_descriptor->type,
412 descriptor->name);
413 break;
414 }
415 }
416 }
417 }
418
419 /* Initialize plugin */
420 if (spec->init) {
421 status = spec->init(plugin);
422 if (status < 0) {
423 printf_verbose("Plugin `%s` initialization error: %d\n",
424 bt_plugin_get_name(plugin), status);
425 goto end;
426 }
427 }
428
429 spec->shared_lib_handle->init_called = true;
430
431 /* Add described component classes to plugin */
432 for (i = 0; i < comp_class_full_descriptors->len; i++) {
433 struct comp_class_full_descriptor *cc_full_descr =
434 &g_array_index(comp_class_full_descriptors,
435 struct comp_class_full_descriptor, i);
436 struct bt_component_class *comp_class;
437
438 switch (cc_full_descr->descriptor->type) {
439 case BT_COMPONENT_CLASS_TYPE_SOURCE:
440 comp_class = bt_component_class_source_create(
441 cc_full_descr->descriptor->name,
55bb57e0
PP
442 cc_full_descr->descriptor->methods.source.notif_iter_next);
443 break;
444 case BT_COMPONENT_CLASS_TYPE_FILTER:
445 comp_class = bt_component_class_filter_create(
446 cc_full_descr->descriptor->name,
55bb57e0
PP
447 cc_full_descr->descriptor->methods.source.notif_iter_next);
448 break;
449 case BT_COMPONENT_CLASS_TYPE_SINK:
450 comp_class = bt_component_class_sink_create(
451 cc_full_descr->descriptor->name,
452 cc_full_descr->descriptor->methods.sink.consume);
453 break;
454 default:
455 printf_verbose("WARNING: Unknown component class type %d for component class %s in plugin %s\n",
456 cc_full_descr->descriptor->type,
457 cc_full_descr->descriptor->name,
458 descriptor->name);
459 continue;
460 }
461
462 if (!comp_class) {
463 status = BT_PLUGIN_STATUS_ERROR;
464 goto end;
465 }
466
467 if (cc_full_descr->description) {
468 ret = bt_component_class_set_description(comp_class,
469 cc_full_descr->description);
470 if (ret) {
471 status = BT_PLUGIN_STATUS_ERROR;
472 BT_PUT(comp_class);
473 goto end;
474 }
475 }
476
279b3f15
PP
477 if (cc_full_descr->help) {
478 ret = bt_component_class_set_help(comp_class,
479 cc_full_descr->help);
480 if (ret) {
481 status = BT_PLUGIN_STATUS_ERROR;
482 BT_PUT(comp_class);
483 goto end;
484 }
485 }
486
55bb57e0
PP
487 if (cc_full_descr->init_method) {
488 ret = bt_component_class_set_init_method(comp_class,
489 cc_full_descr->init_method);
490 if (ret) {
491 status = BT_PLUGIN_STATUS_ERROR;
492 BT_PUT(comp_class);
493 goto end;
494 }
495 }
496
64cadc66
PP
497 if (cc_full_descr->finalize_method) {
498 ret = bt_component_class_set_finalize_method(comp_class,
499 cc_full_descr->finalize_method);
55bb57e0
PP
500 if (ret) {
501 status = BT_PLUGIN_STATUS_ERROR;
502 BT_PUT(comp_class);
503 goto end;
504 }
505 }
506
a67681c1
PP
507 if (cc_full_descr->query_method) {
508 ret = bt_component_class_set_query_method(
509 comp_class, cc_full_descr->query_method);
8463eac2
PP
510 if (ret) {
511 status = BT_PLUGIN_STATUS_ERROR;
512 BT_PUT(comp_class);
513 goto end;
514 }
515 }
516
72b913fb
PP
517 if (cc_full_descr->accept_port_connection_method) {
518 ret = bt_component_class_set_accept_port_connection_method(
519 comp_class, cc_full_descr->accept_port_connection_method);
520 if (ret) {
521 status = BT_PLUGIN_STATUS_ERROR;
522 BT_PUT(comp_class);
523 goto end;
524 }
525 }
526
527 if (cc_full_descr->port_disconnected_method) {
528 ret = bt_component_class_set_port_disconnected_method(
529 comp_class, cc_full_descr->port_disconnected_method);
2d41b99e
JG
530 if (ret) {
531 status = BT_PLUGIN_STATUS_ERROR;
532 BT_PUT(comp_class);
533 goto end;
534 }
535 }
536
55bb57e0
PP
537 switch (cc_full_descr->descriptor->type) {
538 case BT_COMPONENT_CLASS_TYPE_SOURCE:
539 if (cc_full_descr->iterator_methods.init) {
540 ret = bt_component_class_source_set_notification_iterator_init_method(
541 comp_class,
542 cc_full_descr->iterator_methods.init);
543 if (ret) {
544 status = BT_PLUGIN_STATUS_ERROR;
545 BT_PUT(comp_class);
546 goto end;
547 }
548 }
549
64cadc66
PP
550 if (cc_full_descr->iterator_methods.finalize) {
551 ret = bt_component_class_source_set_notification_iterator_finalize_method(
55bb57e0 552 comp_class,
64cadc66 553 cc_full_descr->iterator_methods.finalize);
55bb57e0
PP
554 if (ret) {
555 status = BT_PLUGIN_STATUS_ERROR;
556 BT_PUT(comp_class);
557 goto end;
558 }
559 }
560
561 if (cc_full_descr->iterator_methods.seek_time) {
562 ret = bt_component_class_source_set_notification_iterator_seek_time_method(
563 comp_class,
564 cc_full_descr->iterator_methods.seek_time);
565 if (ret) {
566 status = BT_PLUGIN_STATUS_ERROR;
567 BT_PUT(comp_class);
568 goto end;
569 }
570 }
571 break;
572 case BT_COMPONENT_CLASS_TYPE_FILTER:
55bb57e0
PP
573 if (cc_full_descr->iterator_methods.init) {
574 ret = bt_component_class_filter_set_notification_iterator_init_method(
575 comp_class,
576 cc_full_descr->iterator_methods.init);
577 if (ret) {
578 status = BT_PLUGIN_STATUS_ERROR;
579 BT_PUT(comp_class);
580 goto end;
581 }
582 }
583
64cadc66
PP
584 if (cc_full_descr->iterator_methods.finalize) {
585 ret = bt_component_class_filter_set_notification_iterator_finalize_method(
55bb57e0 586 comp_class,
64cadc66 587 cc_full_descr->iterator_methods.finalize);
55bb57e0
PP
588 if (ret) {
589 status = BT_PLUGIN_STATUS_ERROR;
590 BT_PUT(comp_class);
591 goto end;
592 }
593 }
594
595 if (cc_full_descr->iterator_methods.seek_time) {
596 ret = bt_component_class_filter_set_notification_iterator_seek_time_method(
597 comp_class,
598 cc_full_descr->iterator_methods.seek_time);
599 if (ret) {
600 status = BT_PLUGIN_STATUS_ERROR;
601 BT_PUT(comp_class);
602 goto end;
603 }
604 }
605 break;
606 case BT_COMPONENT_CLASS_TYPE_SINK:
55bb57e0
PP
607 break;
608 default:
609 assert(false);
610 break;
611 }
612
613 /*
614 * Add component class to the plugin object.
615 *
616 * This will call back
617 * bt_plugin_so_on_add_component_class() so that we can
618 * add a mapping in comp_classes_to_shlib_handles when
619 * we know the component class is successfully added.
620 */
621 status = bt_plugin_add_component_class(plugin,
622 comp_class);
623 BT_PUT(comp_class);
624 if (status < 0) {
625 printf_verbose("Cannot add component class %s (type %d) to plugin `%s`: status = %d\n",
626 cc_full_descr->descriptor->name,
627 cc_full_descr->descriptor->type,
628 bt_plugin_get_name(plugin), status);
629 goto end;
630 }
631 }
632
633 /*
634 * All the plugin's component classes should be added at this
635 * point. We freeze the plugin so that it's not possible to add
636 * component classes to this plugin object after this stage
637 * (plugin object becomes immutable).
638 */
639 bt_plugin_freeze(plugin);
640
641end:
642 g_array_free(comp_class_full_descriptors, TRUE);
643 return status;
644}
645
646static
647struct bt_plugin *bt_plugin_so_create_empty(
648 struct bt_plugin_so_shared_lib_handle *shared_lib_handle)
649{
650 struct bt_plugin *plugin;
651 struct bt_plugin_so_spec_data *spec;
652
653 plugin = bt_plugin_create_empty(BT_PLUGIN_TYPE_SO);
654 if (!plugin) {
655 goto error;
656 }
657
6fbd4105 658 plugin->destroy_spec_data = bt_plugin_so_destroy_spec_data;
55bb57e0
PP
659 plugin->spec_data = g_new0(struct bt_plugin_so_spec_data, 1);
660 if (!plugin->spec_data) {
661 goto error;
662 }
663
664 spec = plugin->spec_data;
665 spec->shared_lib_handle = bt_get(shared_lib_handle);
666 goto end;
667
668error:
669 BT_PUT(plugin);
670
671end:
672 return plugin;
673}
674
675static
676struct bt_plugin **bt_plugin_so_create_all_from_sections(
677 struct bt_plugin_so_shared_lib_handle *shared_lib_handle,
678 struct __bt_plugin_descriptor const * const *descriptors_begin,
679 struct __bt_plugin_descriptor const * const *descriptors_end,
680 struct __bt_plugin_descriptor_attribute const * const *attrs_begin,
681 struct __bt_plugin_descriptor_attribute const * const *attrs_end,
682 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_begin,
683 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_end,
684 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_begin,
685 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_end)
686{
687 size_t descriptor_count;
688 size_t attrs_count;
689 size_t cc_descriptors_count;
690 size_t cc_descr_attrs_count;
691 size_t i;
692 struct bt_plugin **plugins = NULL;
693
694 descriptor_count = descriptors_end - descriptors_begin;
695 attrs_count = attrs_end - attrs_begin;
696 cc_descriptors_count = cc_descriptors_end - cc_descriptors_begin;
697 cc_descr_attrs_count = cc_descr_attrs_end - cc_descr_attrs_begin;
698 printf_verbose("Section: Plugin descriptors: [%p - %p], (%zu elements)\n",
699 descriptors_begin, descriptors_end, descriptor_count);
700 printf_verbose("Section: Plugin descriptor attributes: [%p - %p], (%zu elements)\n",
701 attrs_begin, attrs_end, attrs_count);
702 printf_verbose("Section: Plugin component class descriptors: [%p - %p], (%zu elements)\n",
703 cc_descriptors_begin, cc_descriptors_end, cc_descriptors_count);
704 printf_verbose("Section: Plugin component class descriptor attributes: [%p - %p], (%zu elements)\n",
705 cc_descr_attrs_begin, cc_descr_attrs_end, cc_descr_attrs_count);
706 plugins = calloc(descriptor_count + 1, sizeof(*plugins));
707 if (!plugins) {
708 goto error;
709 }
710
711 for (i = 0; i < descriptor_count; i++) {
712 enum bt_plugin_status status;
713 const struct __bt_plugin_descriptor *descriptor =
714 descriptors_begin[i];
715 struct bt_plugin *plugin;
716
717 printf_verbose("Loading plugin %s (ABI %d.%d)\n", descriptor->name,
718 descriptor->major, descriptor->minor);
719
720 if (descriptor->major > __BT_PLUGIN_VERSION_MAJOR) {
721 printf_error("Unknown plugin's major version: %d\n",
722 descriptor->major);
723 goto error;
724 }
725
726 plugin = bt_plugin_so_create_empty(shared_lib_handle);
727 if (!plugin) {
728 printf_error("Cannot allocate plugin object for plugin %s\n",
729 descriptor->name);
730 goto error;
731 }
732
733 if (shared_lib_handle && shared_lib_handle->path) {
734 bt_plugin_set_path(plugin, shared_lib_handle->path->str);
735 }
736
737 status = bt_plugin_so_init(plugin, descriptor, attrs_begin,
738 attrs_end, cc_descriptors_begin, cc_descriptors_end,
739 cc_descr_attrs_begin, cc_descr_attrs_end);
740 if (status < 0) {
741 printf_error("Cannot initialize plugin object %s\n",
742 descriptor->name);
743 BT_PUT(plugin);
744 goto error;
745 }
746
747 /* Transfer ownership to the array */
748 plugins[i] = plugin;
749 }
750
751 goto end;
752
753error:
754 g_free(plugins);
755 plugins = NULL;
756
757end:
758 return plugins;
759}
760
761BT_HIDDEN
762struct bt_plugin **bt_plugin_so_create_all_from_static(void)
763{
764 struct bt_plugin **plugins = NULL;
765 struct bt_plugin_so_shared_lib_handle *shared_lib_handle =
766 bt_plugin_so_shared_lib_handle_create(NULL);
767
768 if (!shared_lib_handle) {
769 goto end;
770 }
771
772 plugins = bt_plugin_so_create_all_from_sections(shared_lib_handle,
773 SECTION_BEGIN(__bt_plugin_descriptors),
774 SECTION_END(__bt_plugin_descriptors),
775 SECTION_BEGIN(__bt_plugin_descriptor_attributes),
776 SECTION_END(__bt_plugin_descriptor_attributes),
777 SECTION_BEGIN(__bt_plugin_component_class_descriptors),
778 SECTION_END(__bt_plugin_component_class_descriptors),
779 SECTION_BEGIN(__bt_plugin_component_class_descriptor_attributes),
780 SECTION_END(__bt_plugin_component_class_descriptor_attributes));
781
782end:
783 BT_PUT(shared_lib_handle);
784
785 return plugins;
786}
787
788BT_HIDDEN
789struct bt_plugin **bt_plugin_so_create_all_from_file(const char *path)
790{
791 size_t path_len;
792 struct bt_plugin **plugins = NULL;
793 struct __bt_plugin_descriptor const * const *descriptors_begin = NULL;
794 struct __bt_plugin_descriptor const * const *descriptors_end = NULL;
795 struct __bt_plugin_descriptor_attribute const * const *attrs_begin = NULL;
796 struct __bt_plugin_descriptor_attribute const * const *attrs_end = NULL;
797 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_begin = NULL;
798 struct __bt_plugin_component_class_descriptor const * const *cc_descriptors_end = NULL;
799 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_begin = NULL;
800 struct __bt_plugin_component_class_descriptor_attribute const * const *cc_descr_attrs_end = NULL;
801 bool is_libtool_wrapper = false, is_shared_object = false;
802 struct bt_plugin_so_shared_lib_handle *shared_lib_handle = NULL;
803
804 if (!path) {
805 goto end;
806 }
807
808 path_len = strlen(path);
809 if (path_len <= PLUGIN_SUFFIX_LEN) {
810 goto end;
811 }
812
813 path_len++;
814 /*
815 * Check if the file ends with a known plugin file type suffix (i.e. .so
816 * or .la on Linux).
817 */
818 is_libtool_wrapper = !strncmp(LIBTOOL_PLUGIN_SUFFIX,
819 path + path_len - LIBTOOL_PLUGIN_SUFFIX_LEN,
820 LIBTOOL_PLUGIN_SUFFIX_LEN);
821 is_shared_object = !strncmp(NATIVE_PLUGIN_SUFFIX,
822 path + path_len - NATIVE_PLUGIN_SUFFIX_LEN,
823 NATIVE_PLUGIN_SUFFIX_LEN);
824 if (!is_shared_object && !is_libtool_wrapper) {
825 /* Name indicates that this is not a plugin file. */
826 goto end;
827 }
828
829 shared_lib_handle = bt_plugin_so_shared_lib_handle_create(path);
830 if (!shared_lib_handle) {
831 goto end;
832 }
833
834 if (!g_module_symbol(shared_lib_handle->module, "__start___bt_plugin_descriptors",
835 (gpointer *) &descriptors_begin)) {
836 printf_verbose("Unable to resolve plugin symbol %s from %s\n",
837 "__start___bt_plugin_descriptors",
838 g_module_name(shared_lib_handle->module));
839 goto end;
840 }
841
842 if (!g_module_symbol(shared_lib_handle->module, "__stop___bt_plugin_descriptors",
843 (gpointer *) &descriptors_end)) {
844 printf_verbose("Unable to resolve plugin symbol %s from %s\n",
845 "__stop___bt_plugin_descriptors",
846 g_module_name(shared_lib_handle->module));
847 goto end;
848 }
849
850 if (!g_module_symbol(shared_lib_handle->module, "__start___bt_plugin_descriptor_attributes",
851 (gpointer *) &attrs_begin)) {
852 printf_verbose("Unable to resolve plugin symbol %s from %s\n",
853 "__start___bt_plugin_descriptor_attributes",
854 g_module_name(shared_lib_handle->module));
855 }
856
857 if (!g_module_symbol(shared_lib_handle->module, "__stop___bt_plugin_descriptor_attributes",
858 (gpointer *) &attrs_end)) {
859 printf_verbose("Unable to resolve plugin symbol %s from %s\n",
860 "__stop___bt_plugin_descriptor_attributes",
861 g_module_name(shared_lib_handle->module));
862 }
863
864 if ((!!attrs_begin - !!attrs_end) != 0) {
865 printf_verbose("Found __start___bt_plugin_descriptor_attributes or __stop___bt_plugin_descriptor_attributes symbol, but not both in %s\n",
866 g_module_name(shared_lib_handle->module));
867 goto end;
868 }
869
870 if (!g_module_symbol(shared_lib_handle->module, "__start___bt_plugin_component_class_descriptors",
871 (gpointer *) &cc_descriptors_begin)) {
872 printf_verbose("Unable to resolve plugin symbol %s from %s\n",
873 "__start___bt_plugin_component_class_descriptors",
874 g_module_name(shared_lib_handle->module));
875 }
876
877 if (!g_module_symbol(shared_lib_handle->module, "__stop___bt_plugin_component_class_descriptors",
878 (gpointer *) &cc_descriptors_end)) {
879 printf_verbose("Unable to resolve plugin symbol %s from %s\n",
880 "__stop___bt_plugin_component_class_descriptors",
881 g_module_name(shared_lib_handle->module));
882 }
883
884 if ((!!cc_descriptors_begin - !!cc_descriptors_end) != 0) {
885 printf_verbose("Found __start___bt_plugin_component_class_descriptors or __stop___bt_plugin_component_class_descriptors symbol, but not both in %s\n",
886 g_module_name(shared_lib_handle->module));
887 goto end;
888 }
889
890 if (!g_module_symbol(shared_lib_handle->module, "__start___bt_plugin_component_class_descriptor_attributes",
891 (gpointer *) &cc_descr_attrs_begin)) {
892 printf_verbose("Unable to resolve plugin symbol %s from %s\n",
893 "__start___bt_plugin_component_class_descriptor_attributes",
894 g_module_name(shared_lib_handle->module));
895 }
896
897 if (!g_module_symbol(shared_lib_handle->module, "__stop___bt_plugin_component_class_descriptor_attributes",
898 (gpointer *) &cc_descr_attrs_end)) {
899 printf_verbose("Unable to resolve plugin symbol %s from %s\n",
900 "__stop___bt_plugin_component_class_descriptor_attributes",
901 g_module_name(shared_lib_handle->module));
902 }
903
904 if ((!!cc_descr_attrs_begin - !!cc_descr_attrs_end) != 0) {
905 printf_verbose("Found __start___bt_plugin_component_class_descriptor_attributes or __stop___bt_plugin_component_class_descriptor_attributes symbol, but not both in %s\n",
906 g_module_name(shared_lib_handle->module));
907 goto end;
908 }
909
910 /* Initialize plugin */
911 plugins = bt_plugin_so_create_all_from_sections(shared_lib_handle,
912 descriptors_begin, descriptors_end, attrs_begin, attrs_end,
913 cc_descriptors_begin, cc_descriptors_end,
914 cc_descr_attrs_begin, cc_descr_attrs_end);
915
916end:
917 BT_PUT(shared_lib_handle);
918 return plugins;
919}
920
921static
922void plugin_comp_class_destroy_listener(struct bt_component_class *comp_class,
923 void *data)
924{
925 gboolean exists = g_hash_table_remove(comp_classes_to_shlib_handles,
926 comp_class);
927 assert(exists);
928}
929
930BT_HIDDEN
931int bt_plugin_so_on_add_component_class(struct bt_plugin *plugin,
932 struct bt_component_class *comp_class)
933{
934 int ret;
935 struct bt_plugin_so_spec_data *spec = plugin->spec_data;
936
937 assert(plugin->spec_data);
938 assert(plugin->type == BT_PLUGIN_TYPE_SO);
939
940 /* Map component class pointer to shared lib handle in global HT */
941 g_hash_table_insert(comp_classes_to_shlib_handles, comp_class,
942 bt_get(spec->shared_lib_handle));
943
944 /* Add our custom destroy listener */
945 ret = bt_component_class_add_destroy_listener(comp_class,
946 plugin_comp_class_destroy_listener, NULL);
947 if (ret) {
948 goto error;
949 }
950 goto end;
951
952error:
953 /* Remove entry from global hash table (if exists) */
954 g_hash_table_remove(comp_classes_to_shlib_handles,
955 comp_class);
956
957end:
958 return ret;
959}
This page took 0.058885 seconds and 4 git commands to generate.