Add support for UST application registration
[lttng-tools.git] / include / lttng-kernel.h
CommitLineData
93128a92
DG
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * David Goulet <david.goulet@polymtl.ca>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
82a3637f
DG
8 * as published by the Free Software Foundation; only version 2
9 * of the License.
93128a92
DG
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21#ifndef _LTTNG_KERNEL_H
22#define _LTTNG_KERNEL_H
23
9bda164d 24#include "lttng-share.h"
93128a92 25
9cb98350
JD
26#define LTTNG_SYM_NAME_LEN 128
27
7d29a247
DG
28/*
29 * LTTng DebugFS ABI structures.
30 *
31 * This is the kernel ABI copied from lttng-modules tree.
32 */
33
9cb98350 34enum lttng_kernel_instrumentation {
e6ddca71
DG
35 LTTNG_KERNEL_TRACEPOINT = 0,
36 LTTNG_KERNEL_KPROBE = 1,
37 LTTNG_KERNEL_FUNCTION = 2,
8f0d098b 38 LTTNG_KERNEL_KRETPROBE = 3,
e6ddca71
DG
39};
40
7d29a247
DG
41enum lttng_kernel_context_type {
42 LTTNG_KERNEL_CONTEXT_PID = 0,
43 LTTNG_KERNEL_CONTEXT_PERF_COUNTER = 1,
44 LTTNG_KERNEL_CONTEXT_COMM = 2,
45 LTTNG_KERNEL_CONTEXT_PRIO = 3,
46 LTTNG_KERNEL_CONTEXT_NICE = 4,
47 LTTNG_KERNEL_CONTEXT_VPID = 5,
48 LTTNG_KERNEL_CONTEXT_TID = 6,
49 LTTNG_KERNEL_CONTEXT_VTID = 7,
50 LTTNG_KERNEL_CONTEXT_PPID = 8,
51 LTTNG_KERNEL_CONTEXT_VPPID = 9,
52};
53
54/* Perf counter attributes */
55struct lttng_kernel_perf_counter_ctx {
56 uint32_t type;
57 uint64_t config;
58 char name[LTTNG_SYMBOL_NAME_LEN];
59};
60
61/* Event/Channel context */
62struct lttng_kernel_context {
63 enum lttng_kernel_context_type ctx;
64 union {
65 struct lttng_kernel_perf_counter_ctx perf_counter;
66 } u;
9cb98350
JD
67};
68
8f0d098b
MD
69struct lttng_kernel_kretprobe {
70 uint64_t addr;
71
72 uint64_t offset;
73 char symbol_name[LTTNG_SYM_NAME_LEN];
74};
75
93128a92 76/*
7d29a247 77 * Either addr is used, or symbol_name and offset.
93128a92 78 */
7d29a247
DG
79struct lttng_kernel_kprobe {
80 uint64_t addr;
81
82 uint64_t offset;
83 char symbol_name[LTTNG_SYM_NAME_LEN];
84};
9cb98350 85
f05b5f07 86/* Function tracer */
7d29a247 87struct lttng_kernel_function {
9cb98350 88 char symbol_name[LTTNG_SYM_NAME_LEN];
93128a92
DG
89};
90
9cb98350 91struct lttng_kernel_event {
f3ed775e 92 char name[LTTNG_SYM_NAME_LEN];
9cb98350
JD
93 enum lttng_kernel_instrumentation instrumentation;
94 /* Per instrumentation type configuration */
95 union {
8f0d098b 96 struct lttng_kernel_kretprobe kretprobe;
7d29a247
DG
97 struct lttng_kernel_kprobe kprobe;
98 struct lttng_kernel_function ftrace;
9cb98350 99 } u;
93128a92
DG
100};
101
9cb98350
JD
102struct lttng_kernel_tracer_version {
103 uint32_t version;
104 uint32_t patchlevel;
105 uint32_t sublevel;
93128a92
DG
106};
107
d0254c7c
MD
108enum lttng_kernel_calibrate_type {
109 LTTNG_KERNEL_CALIBRATE_KRETPROBE,
110};
111
112struct lttng_kernel_calibrate {
113 enum lttng_kernel_calibrate_type type; /* type (input) */
114};
115
93128a92 116#endif /* _LTTNG_KERNEL_H */
This page took 0.027104 seconds and 4 git commands to generate.