2 * Copyright (C) 2020 Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
4 * SPDX-License-Identifier: LGPL-2.1-only
8 #ifndef LTTNG_KERNEL_PROBE_INTERNAL_H
9 #define LTTNG_KERNEL_PROBE_INTERNAL_H
11 #include <common/fd-handle.h>
12 #include <common/macros.h>
13 #include <lttng/kernel-probe.h>
16 #include <sys/types.h>
19 struct lttng_payload_view
;
20 struct lttng_dynamic_buffer
;
22 typedef bool (*kernel_probe_location_equal_cb
)(
23 const struct lttng_kernel_probe_location
*a
,
24 const struct lttng_kernel_probe_location
*b
);
25 typedef int (*kernel_probe_location_serialize_cb
)(
26 const struct lttng_kernel_probe_location
*kernel_probe_location
,
27 struct lttng_payload
*payload
);
28 typedef bool (*kernel_probe_location_equal_cb
)(
29 const struct lttng_kernel_probe_location
*a
,
30 const struct lttng_kernel_probe_location
*b
);
31 typedef ssize_t (*kernel_probe_location_create_from_payload_cb
)(
32 struct lttng_payload_view
*view
,
33 struct lttng_kernel_probe_location
**kernel_probe_location
);
34 typedef unsigned long (*kernel_probe_location_hash_cb
)(
35 const struct lttng_kernel_probe_location
*location
);
37 struct lttng_kernel_probe_location_comm
{
38 /* enum lttng_kernel_probe_location_type */
41 * Payload is composed of, in that order,
42 * - type-specific payload
47 struct lttng_kernel_probe_location_symbol_comm
{
48 /* Includes the trailing \0. */
50 /* The offset from the symbol. */
53 * Payload is composed of, in that order,
54 * - symbol name (with trailing \0).
59 struct lttng_kernel_probe_location_address_comm
{
63 /* Common ancestor of all kernel probe locations. */
64 struct lttng_kernel_probe_location
{
65 enum lttng_kernel_probe_location_type type
;
66 kernel_probe_location_equal_cb equal
;
67 kernel_probe_location_serialize_cb serialize
;
68 kernel_probe_location_hash_cb hash
;
71 struct lttng_kernel_probe_location_symbol
{
72 struct lttng_kernel_probe_location parent
;
77 struct lttng_kernel_probe_location_address
{
78 struct lttng_kernel_probe_location parent
;
83 int lttng_kernel_probe_location_serialize(
84 const struct lttng_kernel_probe_location
*location
,
85 struct lttng_payload
*payload
);
88 ssize_t
lttng_kernel_probe_location_create_from_payload(
89 struct lttng_payload_view
*view
,
90 struct lttng_kernel_probe_location
**probe_location
);
93 bool lttng_kernel_probe_location_is_equal(
94 const struct lttng_kernel_probe_location
*a
,
95 const struct lttng_kernel_probe_location
*b
);
98 struct lttng_kernel_probe_location
*lttng_kernel_probe_location_copy(
99 const struct lttng_kernel_probe_location
*location
);
102 unsigned long lttng_kernel_probe_location_hash(
103 const struct lttng_kernel_probe_location
*location
);
105 #endif /* LTTNG_KERNEL_PROBE_INTERNAL_H */