2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; only version 2
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 #include <sys/types.h>
29 #include <urcu/list.h>
35 #define PRINT_LINE_LEN 80
37 static char *opt_event_name
;
38 static char *opt_channel_name
;
39 static char *opt_session_name
;
40 static int *opt_kernel
;
41 static int opt_pid_all
;
42 static int opt_userspace
;
43 static char *opt_cmd_name
;
45 static char *opt_type
;
53 static struct lttng_handle
*handle
;
56 * Taken from the LTTng ABI
60 CONTEXT_PERF_COUNTER
= 1,
72 * Taken from the Perf ABI (all enum perf_*)
75 PERF_TYPE_HARDWARE
= 0,
76 PERF_TYPE_SOFTWARE
= 1,
77 PERF_TYPE_HW_CACHE
= 3,
80 enum perf_count_hard
{
81 PERF_COUNT_HW_CPU_CYCLES
= 0,
82 PERF_COUNT_HW_INSTRUCTIONS
= 1,
83 PERF_COUNT_HW_CACHE_REFERENCES
= 2,
84 PERF_COUNT_HW_CACHE_MISSES
= 3,
85 PERF_COUNT_HW_BRANCH_INSTRUCTIONS
= 4,
86 PERF_COUNT_HW_BRANCH_MISSES
= 5,
87 PERF_COUNT_HW_BUS_CYCLES
= 6,
88 PERF_COUNT_HW_STALLED_CYCLES_FRONTEND
= 7,
89 PERF_COUNT_HW_STALLED_CYCLES_BACKEND
= 8,
92 enum perf_count_soft
{
93 PERF_COUNT_SW_CPU_CLOCK
= 0,
94 PERF_COUNT_SW_TASK_CLOCK
= 1,
95 PERF_COUNT_SW_PAGE_FAULTS
= 2,
96 PERF_COUNT_SW_CONTEXT_SWITCHES
= 3,
97 PERF_COUNT_SW_CPU_MIGRATIONS
= 4,
98 PERF_COUNT_SW_PAGE_FAULTS_MIN
= 5,
99 PERF_COUNT_SW_PAGE_FAULTS_MAJ
= 6,
100 PERF_COUNT_SW_ALIGNMENT_FAULTS
= 7,
101 PERF_COUNT_SW_EMULATION_FAULTS
= 8,
105 * Generalized hardware cache events:
107 * { L1-D, L1-I, LLC, ITLB, DTLB, BPU } x
108 * { read, write, prefetch } x
109 * { accesses, misses }
111 enum perf_hw_cache_id
{
112 PERF_COUNT_HW_CACHE_L1D
= 0,
113 PERF_COUNT_HW_CACHE_L1I
= 1,
114 PERF_COUNT_HW_CACHE_LL
= 2,
115 PERF_COUNT_HW_CACHE_DTLB
= 3,
116 PERF_COUNT_HW_CACHE_ITLB
= 4,
117 PERF_COUNT_HW_CACHE_BPU
= 5,
119 PERF_COUNT_HW_CACHE_MAX
, /* non-ABI */
122 enum perf_hw_cache_op_id
{
123 PERF_COUNT_HW_CACHE_OP_READ
= 0,
124 PERF_COUNT_HW_CACHE_OP_WRITE
= 1,
125 PERF_COUNT_HW_CACHE_OP_PREFETCH
= 2,
127 PERF_COUNT_HW_CACHE_OP_MAX
, /* non-ABI */
130 enum perf_hw_cache_op_result_id
{
131 PERF_COUNT_HW_CACHE_RESULT_ACCESS
= 0,
132 PERF_COUNT_HW_CACHE_RESULT_MISS
= 1,
134 PERF_COUNT_HW_CACHE_RESULT_MAX
, /* non-ABI */
137 static struct poptOption long_options
[] = {
138 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
139 {"help", 'h', POPT_ARG_NONE
, 0, OPT_HELP
, 0, 0},
140 {"session", 's', POPT_ARG_STRING
, &opt_session_name
, 0, 0, 0},
141 {"channel", 'c', POPT_ARG_STRING
, &opt_channel_name
, 0, 0, 0},
142 {"event", 'e', POPT_ARG_STRING
, &opt_event_name
, 0, 0, 0},
143 {"kernel", 'k', POPT_ARG_VAL
, &opt_kernel
, 1, 0, 0},
144 {"userspace", 'u', POPT_ARG_STRING
| POPT_ARGFLAG_OPTIONAL
, 0, OPT_USERSPACE
, 0, 0},
145 {"all", 0, POPT_ARG_VAL
, &opt_pid_all
, 1, 0, 0},
146 {"pid", 'p', POPT_ARG_INT
, &opt_pid
, 0, 0, 0},
147 {"type", 't', POPT_ARG_STRING
, &opt_type
, OPT_TYPE
, 0, 0},
148 {0, 0, 0, 0, 0, 0, 0}
154 #define PERF_HW(opt, name) \
156 "perf:" #opt, CONTEXT_PERF_COUNTER, \
157 .u.perf = { PERF_TYPE_HARDWARE, PERF_COUNT_HW_##name, },\
160 #define PERF_SW(opt, name) \
162 "perf:" #opt, CONTEXT_PERF_COUNTER, \
163 .u.perf = { PERF_TYPE_SOFTWARE, PERF_COUNT_SW_##name, },\
166 #define _PERF_HW_CACHE(optstr, name, op, result) \
168 "perf:" optstr, CONTEXT_PERF_COUNTER, \
170 PERF_TYPE_HW_CACHE, \
171 (uint64_t) PERF_COUNT_HW_CACHE_##name \
172 | ((uint64_t) PERF_COUNT_HW_CACHE_OP_##op << 8) \
173 | ((uint64_t) PERF_COUNT_HW_CACHE_RESULT_##result << 16), \
177 #define PERF_HW_CACHE(opt, name) \
178 _PERF_HW_CACHE(#opt "-loads", name, READ, ACCESS), \
179 _PERF_HW_CACHE(#opt "-load-misses", name, READ, MISS), \
180 _PERF_HW_CACHE(#opt "-stores", name, WRITE, ACCESS), \
181 _PERF_HW_CACHE(#opt "-store-misses", name, WRITE, MISS), \
182 _PERF_HW_CACHE(#opt "-prefetches", name, PREFETCH, ACCESS), \
183 _PERF_HW_CACHE(#opt "-prefetch-misses", name, PREFETCH, MISS) \
186 const struct ctx_opts
{
188 enum context_type ctx_type
;
196 { "pid", CONTEXT_PID
},
197 { "procname", CONTEXT_PROCNAME
},
198 { "prio", CONTEXT_PRIO
},
199 { "nice", CONTEXT_NICE
},
200 { "vpid", CONTEXT_VPID
},
201 { "tid", CONTEXT_TID
},
202 { "vtid", CONTEXT_VTID
},
203 { "ppid", CONTEXT_PPID
},
204 { "vppid", CONTEXT_VPPID
},
206 PERF_HW(cpu
-cycles
, CPU_CYCLES
),
207 PERF_HW(cycles
, CPU_CYCLES
),
208 PERF_HW(stalled
-cycles
-frontend
, STALLED_CYCLES_FRONTEND
),
209 PERF_HW(idle
-cycles
-frontend
, STALLED_CYCLES_FRONTEND
),
210 PERF_HW(stalled
-cycles
-backend
, STALLED_CYCLES_BACKEND
),
211 PERF_HW(idle
-cycles
-backend
, STALLED_CYCLES_BACKEND
),
212 PERF_HW(instructions
, INSTRUCTIONS
),
213 PERF_HW(cache
-references
, CACHE_REFERENCES
),
214 PERF_HW(cache
-misses
, CACHE_MISSES
),
215 PERF_HW(branch
-instructions
, BRANCH_INSTRUCTIONS
),
216 PERF_HW(branches
, BRANCH_INSTRUCTIONS
),
217 PERF_HW(branch
-misses
, BRANCH_MISSES
),
218 PERF_HW(bus
-cycles
, BUS_CYCLES
),
220 PERF_HW_CACHE(L1
-dcache
, L1D
),
221 PERF_HW_CACHE(L1
-icache
, L1I
),
222 PERF_HW_CACHE(LLC
, LL
),
223 PERF_HW_CACHE(dTLB
, DTLB
),
224 _PERF_HW_CACHE("iTLB-loads", ITLB
, READ
, ACCESS
),
225 _PERF_HW_CACHE("iTLB-load-misses", ITLB
, READ
, MISS
),
226 _PERF_HW_CACHE("branch-loads", BPU
, READ
, ACCESS
),
227 _PERF_HW_CACHE("branch-load-misses", BPU
, READ
, MISS
),
230 PERF_SW(cpu
-clock
, CPU_CLOCK
),
231 PERF_SW(task
-clock
, TASK_CLOCK
),
232 PERF_SW(page
-fault
, PAGE_FAULTS
),
233 PERF_SW(faults
, PAGE_FAULTS
),
234 PERF_SW(major
-faults
, PAGE_FAULTS_MAJ
),
235 PERF_SW(minor
-faults
, PAGE_FAULTS_MIN
),
236 PERF_SW(context
-switches
, CONTEXT_SWITCHES
),
237 PERF_SW(cs
, CONTEXT_SWITCHES
),
238 PERF_SW(cpu
-migrations
, CPU_MIGRATIONS
),
239 PERF_SW(migrations
, CPU_MIGRATIONS
),
240 PERF_SW(alignment
-faults
, ALIGNMENT_FAULTS
),
241 PERF_SW(emulation
-faults
, EMULATION_FAULTS
),
242 { NULL
, -1 }, /* Closure */
249 * Context type for command line option parsing.
252 const struct ctx_opts
*opt
;
253 struct cds_list_head list
;
257 * List of context type. Use to enable multiple context on a single command
260 struct ctx_type_list
{
261 struct cds_list_head head
;
263 .head
= CDS_LIST_HEAD_INIT(ctx_type_list
.head
),
267 * Pretty print context type.
269 static void print_ctx_type(FILE *ofp
)
271 const char *indent
= " ";
272 int indent_len
= strlen(indent
);
275 fprintf(ofp
, "%s", indent
);
277 while (ctx_opts
[i
].symbol
!= NULL
) {
278 if (len
> indent_len
) {
279 if (len
+ strlen(ctx_opts
[i
].symbol
) + 2
282 fprintf(ofp
, "%s", indent
);
285 len
+= fprintf(ofp
, ", ");
288 len
+= fprintf(ofp
, "%s", ctx_opts
[i
].symbol
);
296 static void usage(FILE *ofp
)
298 fprintf(ofp
, "usage: lttng add-context -t TYPE\n");
300 fprintf(ofp
, "If no event name is given (-e), the context will be added to\n");
301 fprintf(ofp
, "all events in the channel.\n");
302 fprintf(ofp
, "If no channel and no event is given (-c/-e), the context\n");
303 fprintf(ofp
, "will be added to all events in all channels.\n");
305 fprintf(ofp
, "Options:\n");
306 fprintf(ofp
, " -h, --help Show this help\n");
307 fprintf(ofp
, " -s, --session Apply on session name\n");
308 fprintf(ofp
, " -c, --channel NAME Apply on channel\n");
309 fprintf(ofp
, " -e, --event NAME Apply on event\n");
310 fprintf(ofp
, " -k, --kernel Apply for the kernel tracer\n");
311 fprintf(ofp
, " -u, --userspace Apply for the user-space tracer\n");
312 fprintf(ofp
, " --all If -u, apply on all traceable apps\n");
313 fprintf(ofp
, " -p, --pid PID If -u, apply on a specific PID\n");
314 fprintf(ofp
, " -t, --type TYPE Context type. You can repeat that option on\n");
315 fprintf(ofp
, " the command line.\n");
316 fprintf(ofp
, " TYPE can be one of the strings below:\n");
319 fprintf(ofp
, "Example:\n");
320 fprintf(ofp
, "This command will add the context information 'prio' and two perf\n"
321 "counters: hardware branch misses and cache misses, to all events\n"
322 "in the trace data output:\n");
323 fprintf(ofp
, "# lttng add-context -k -t prio -t perf:branch-misses -t perf:cache-misses\n");
328 * Find context numerical value from string.
330 static int find_ctx_type_idx(const char *opt
)
334 while (ctx_opts
[i
].symbol
!= NULL
) {
335 if (strcmp(opt
, ctx_opts
[i
].symbol
) == 0) {
347 * Add context to channel or event.
349 static int add_context(char *session_name
)
351 int ret
= CMD_SUCCESS
;
352 struct lttng_event_context context
;
353 struct lttng_domain dom
;
354 struct ctx_type
*type
;
358 dom
.type
= LTTNG_DOMAIN_KERNEL
;
361 handle
= lttng_create_handle(session_name
, &dom
);
362 if (handle
== NULL
) {
367 /* Iterate over all context type given */
368 cds_list_for_each_entry(type
, &ctx_type_list
.head
, list
) {
370 context
.ctx
= type
->opt
->ctx_type
;
371 if (context
.ctx
== LTTNG_EVENT_CONTEXT_PERF_COUNTER
) {
372 context
.u
.perf_counter
.type
= type
->opt
->u
.perf
.type
;
373 context
.u
.perf_counter
.config
= type
->opt
->u
.perf
.config
;
374 strcpy(context
.u
.perf_counter
.name
, type
->opt
->symbol
);
375 /* Replace : and - by _ */
376 while ((ptr
= strchr(context
.u
.perf_counter
.name
, '-')) != NULL
) {
379 while ((ptr
= strchr(context
.u
.perf_counter
.name
, ':')) != NULL
) {
384 DBG("Adding kernel context");
385 ret
= lttng_add_context(handle
, &context
, opt_event_name
,
388 fprintf(stderr
, "%s: ", type
->opt
->symbol
);
391 MSG("Kernel context %s added", type
->opt
->symbol
);
393 } else if (opt_userspace
) { /* User-space tracer action */
395 * TODO: Waiting on lttng UST 2.0
398 } else if (opt_pid
!= 0) {
400 ret
= CMD_NOT_IMPLEMENTED
;
403 ERR("Please specify a tracer (--kernel or --userspace)");
409 lttng_destroy_handle(handle
);
415 * Add context on channel or event.
417 int cmd_add_context(int argc
, const char **argv
)
419 int index
, opt
, ret
= CMD_SUCCESS
;
420 static poptContext pc
;
421 struct ctx_type
*type
, *tmptype
;
422 char *session_name
= NULL
;
429 pc
= poptGetContext(NULL
, argc
, argv
, long_options
, 0);
430 poptReadDefaultConfig(pc
, 0);
432 while ((opt
= poptGetNextOpt(pc
)) != -1) {
439 type
= malloc(sizeof(struct ctx_type
));
441 perror("malloc ctx_type");
445 index
= find_ctx_type_idx(opt_type
);
447 ERR("Unknown context type %s", opt_type
);
450 type
->opt
= &ctx_opts
[index
];
451 if (type
->opt
->ctx_type
== -1) {
452 ERR("Unknown context type %s", opt_type
);
454 cds_list_add(&type
->list
, &ctx_type_list
.head
);
459 opt_cmd_name
= poptGetOptArg(pc
);
468 if (!opt_session_name
) {
469 session_name
= get_session_name();
470 if (session_name
== NULL
) {
475 session_name
= opt_session_name
;
478 ret
= add_context(session_name
);
480 /* Cleanup allocated memory */
481 cds_list_for_each_entry_safe(type
, tmptype
, &ctx_type_list
.head
, list
) {