X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Flttng%2Fevent-rule%2Fkretprobe-internal.h;fp=include%2Flttng%2Fevent-rule%2Fkretprobe-internal.h;h=0bfa79f1015611465f18380824fd67ec1e5b5c20;hb=5024c2ac433f5c5feec034cb7d8d485d25cf14e7;hp=0000000000000000000000000000000000000000;hpb=e2d1190b9ea09c54e5d7373643d62e2034bc1531;p=deliverable%2Flttng-tools.git diff --git a/include/lttng/event-rule/kretprobe-internal.h b/include/lttng/event-rule/kretprobe-internal.h new file mode 100644 index 000000000..0bfa79f10 --- /dev/null +++ b/include/lttng/event-rule/kretprobe-internal.h @@ -0,0 +1,50 @@ +/* + * Copyright (C) 2019 Jonathan Rajotte + * + * SPDX-License-Identifier: LGPL-2.1-only + * + */ + +#ifndef LTTNG_EVENT_RULE_KRETPROBE_INTERNAL_H +#define LTTNG_EVENT_RULE_KRETPROBE_INTERNAL_H + +#include +#include +#include +#include + +struct lttng_event_rule_kretprobe { + struct lttng_event_rule parent; + char *name; + struct { + uint64_t address; + uint64_t offset; + char *symbol_name; + } probe; +}; + +struct lttng_event_rule_kretprobe_comm { + uint32_t name_len; + uint32_t probe_symbol_len; + /*name, probe symbol_name */ + char payload[]; +} LTTNG_PACKED; + +LTTNG_HIDDEN +ssize_t lttng_event_rule_kretprobe_create_from_buffer( + const struct lttng_buffer_view *view, + struct lttng_event_rule **rule); + +LTTNG_HIDDEN +uint64_t lttng_event_rule_kretprobe_get_address( + const struct lttng_event_rule *rule); + +LTTNG_HIDDEN +uint64_t lttng_event_rule_kretprobe_get_offset( + const struct lttng_event_rule *rule); + +LTTNG_HIDDEN +const char *lttng_event_rule_kretprobe_get_symbol_name( + const struct lttng_event_rule *rule); + +#endif /* LTTNG_EVENT_RULE_KRETPROBE_INTERNAL_H */