2 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
3 * Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 * SPDX-License-Identifier: GPL-2.0-only
16 #include <sys/types.h>
20 #include <urcu/list.h>
22 #include <common/mi-lttng.h>
24 #include "../command.h"
26 static char *opt_channel_name
;
27 static char *opt_session_name
;
28 static int opt_kernel
;
29 static int opt_userspace
;
32 static char *opt_type
;
34 #ifdef LTTNG_EMBED_HELP
35 static const char help_msg
[] =
36 #include <lttng-add-context.1.h>
50 static struct lttng_handle
*handle
;
51 static struct mi_writer
*writer
;
54 * Taken from the LTTng ABI
58 CONTEXT_PERF_COUNTER
= 1, /* Backward compat. */
67 CONTEXT_PTHREAD_ID
= 10,
68 CONTEXT_HOSTNAME
= 11,
70 CONTEXT_PERF_CPU_COUNTER
= 13,
71 CONTEXT_PERF_THREAD_COUNTER
= 14,
72 CONTEXT_APP_CONTEXT
= 15,
73 CONTEXT_INTERRUPTIBLE
= 16,
74 CONTEXT_PREEMPTIBLE
= 17,
75 CONTEXT_NEED_RESCHEDULE
= 18,
76 CONTEXT_MIGRATABLE
= 19,
77 CONTEXT_CALLSTACK_KERNEL
= 20,
78 CONTEXT_CALLSTACK_USER
= 21,
79 CONTEXT_CGROUP_NS
= 22,
101 * Taken from the Perf ABI (all enum perf_*)
104 PERF_TYPE_HARDWARE
= 0,
105 PERF_TYPE_SOFTWARE
= 1,
106 PERF_TYPE_HW_CACHE
= 3,
110 enum perf_count_hard
{
111 PERF_COUNT_HW_CPU_CYCLES
= 0,
112 PERF_COUNT_HW_INSTRUCTIONS
= 1,
113 PERF_COUNT_HW_CACHE_REFERENCES
= 2,
114 PERF_COUNT_HW_CACHE_MISSES
= 3,
115 PERF_COUNT_HW_BRANCH_INSTRUCTIONS
= 4,
116 PERF_COUNT_HW_BRANCH_MISSES
= 5,
117 PERF_COUNT_HW_BUS_CYCLES
= 6,
118 PERF_COUNT_HW_STALLED_CYCLES_FRONTEND
= 7,
119 PERF_COUNT_HW_STALLED_CYCLES_BACKEND
= 8,
122 enum perf_count_soft
{
123 PERF_COUNT_SW_CPU_CLOCK
= 0,
124 PERF_COUNT_SW_TASK_CLOCK
= 1,
125 PERF_COUNT_SW_PAGE_FAULTS
= 2,
126 PERF_COUNT_SW_CONTEXT_SWITCHES
= 3,
127 PERF_COUNT_SW_CPU_MIGRATIONS
= 4,
128 PERF_COUNT_SW_PAGE_FAULTS_MIN
= 5,
129 PERF_COUNT_SW_PAGE_FAULTS_MAJ
= 6,
130 PERF_COUNT_SW_ALIGNMENT_FAULTS
= 7,
131 PERF_COUNT_SW_EMULATION_FAULTS
= 8,
135 * Generalized hardware cache events:
137 * { L1-D, L1-I, LLC, ITLB, DTLB, BPU } x
138 * { read, write, prefetch } x
139 * { accesses, misses }
141 enum perf_hw_cache_id
{
142 PERF_COUNT_HW_CACHE_L1D
= 0,
143 PERF_COUNT_HW_CACHE_L1I
= 1,
144 PERF_COUNT_HW_CACHE_LL
= 2,
145 PERF_COUNT_HW_CACHE_DTLB
= 3,
146 PERF_COUNT_HW_CACHE_ITLB
= 4,
147 PERF_COUNT_HW_CACHE_BPU
= 5,
149 PERF_COUNT_HW_CACHE_MAX
, /* non-ABI */
152 enum perf_hw_cache_op_id
{
153 PERF_COUNT_HW_CACHE_OP_READ
= 0,
154 PERF_COUNT_HW_CACHE_OP_WRITE
= 1,
155 PERF_COUNT_HW_CACHE_OP_PREFETCH
= 2,
157 PERF_COUNT_HW_CACHE_OP_MAX
, /* non-ABI */
160 enum perf_hw_cache_op_result_id
{
161 PERF_COUNT_HW_CACHE_RESULT_ACCESS
= 0,
162 PERF_COUNT_HW_CACHE_RESULT_MISS
= 1,
164 PERF_COUNT_HW_CACHE_RESULT_MAX
, /* non-ABI */
167 static struct poptOption long_options
[] = {
168 /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
169 {"help", 'h', POPT_ARG_NONE
, 0, OPT_HELP
, 0, 0},
170 {"session", 's', POPT_ARG_STRING
, &opt_session_name
, 0, 0, 0},
171 {"channel", 'c', POPT_ARG_STRING
, &opt_channel_name
, 0, 0, 0},
172 {"kernel", 'k', POPT_ARG_VAL
, &opt_kernel
, 1, 0, 0},
173 {"userspace", 'u', POPT_ARG_NONE
, 0, OPT_USERSPACE
, 0, 0},
174 {"jul", 'j', POPT_ARG_NONE
, 0, OPT_JUL
, 0, 0},
175 {"log4j", 'l', POPT_ARG_NONE
, 0, OPT_LOG4J
, 0, 0},
176 {"type", 't', POPT_ARG_STRING
, &opt_type
, OPT_TYPE
, 0, 0},
177 {"list", 0, POPT_ARG_NONE
, NULL
, OPT_LIST
, NULL
, NULL
},
178 {"list-options", 0, POPT_ARG_NONE
, NULL
, OPT_LIST_OPTIONS
, NULL
, NULL
},
179 {0, 0, 0, 0, 0, 0, 0}
185 #define PERF_HW(optstr, name, type, hide) \
187 (char *) optstr, type, hide, \
188 .u.perf = { PERF_TYPE_HARDWARE, PERF_COUNT_HW_##name, },\
191 #define PERF_SW(optstr, name, type, hide) \
193 (char *) optstr, type, hide, \
194 .u.perf = { PERF_TYPE_SOFTWARE, PERF_COUNT_SW_##name, },\
197 #define _PERF_HW_CACHE(optstr, name, type, op, result, hide) \
199 (char *) optstr, type, hide, \
201 PERF_TYPE_HW_CACHE, \
202 (uint64_t) PERF_COUNT_HW_CACHE_##name \
203 | ((uint64_t) PERF_COUNT_HW_CACHE_OP_##op << 8) \
204 | ((uint64_t) PERF_COUNT_HW_CACHE_RESULT_##result << 16), \
208 #define PERF_HW_CACHE(optstr, name, type, hide) \
209 _PERF_HW_CACHE(optstr "-loads", name, type, \
210 READ, ACCESS, hide), \
211 _PERF_HW_CACHE(optstr "-load-misses", name, type, \
213 _PERF_HW_CACHE(optstr "-stores", name, type, \
214 WRITE, ACCESS, hide), \
215 _PERF_HW_CACHE(optstr "-store-misses", name, type, \
216 WRITE, MISS, hide), \
217 _PERF_HW_CACHE(optstr "-prefetches", name, type, \
218 PREFETCH, ACCESS, hide), \
219 _PERF_HW_CACHE(optstr "-prefetch-misses", name, type, \
220 PREFETCH, MISS, hide)
223 const struct ctx_opts
{
225 enum context_type ctx_type
;
226 int hide_help
; /* Hide from --help */
239 * These (char *) casts (as well as those in the PERF_* macros) are
240 * safe because we never free these instances of `struct ctx_opts`.
242 { (char *) "pid", CONTEXT_PID
},
243 { (char *) "procname", CONTEXT_PROCNAME
},
244 { (char *) "prio", CONTEXT_PRIO
},
245 { (char *) "nice", CONTEXT_NICE
},
246 { (char *) "vpid", CONTEXT_VPID
},
247 { (char *) "tid", CONTEXT_TID
},
248 { (char *) "pthread_id", CONTEXT_PTHREAD_ID
},
249 { (char *) "vtid", CONTEXT_VTID
},
250 { (char *) "ppid", CONTEXT_PPID
},
251 { (char *) "vppid", CONTEXT_VPPID
},
252 { (char *) "hostname", CONTEXT_HOSTNAME
},
253 { (char *) "ip", CONTEXT_IP
},
254 { (char *) "interruptible", CONTEXT_INTERRUPTIBLE
},
255 { (char *) "preemptible", CONTEXT_PREEMPTIBLE
},
256 { (char *) "need_reschedule", CONTEXT_NEED_RESCHEDULE
},
257 { (char *) "migratable", CONTEXT_MIGRATABLE
},
258 { (char *) "callstack-kernel", CONTEXT_CALLSTACK_KERNEL
},
259 #if HAVE_MODULES_USERSPACE_CALLSTACK_CONTEXT
260 { (char *) "callstack-user", CONTEXT_CALLSTACK_USER
},
262 { (char *) "cgroup_ns", CONTEXT_CGROUP_NS
},
263 { (char *) "ipc_ns", CONTEXT_IPC_NS
},
264 { (char *) "mnt_ns", CONTEXT_MNT_NS
},
265 { (char *) "net_ns", CONTEXT_NET_NS
},
266 { (char *) "pid_ns", CONTEXT_PID_NS
},
267 { (char *) "user_ns", CONTEXT_USER_NS
},
268 { (char *) "uts_ns", CONTEXT_UTS_NS
},
269 { (char *) "uid", CONTEXT_UID
},
270 { (char *) "euid", CONTEXT_EUID
},
271 { (char *) "suid", CONTEXT_SUID
},
272 { (char *) "gid", CONTEXT_GID
},
273 { (char *) "egid", CONTEXT_EGID
},
274 { (char *) "sgid", CONTEXT_SGID
},
275 { (char *) "vuid", CONTEXT_VUID
},
276 { (char *) "veuid", CONTEXT_VEUID
},
277 { (char *) "vsuid", CONTEXT_VSUID
},
278 { (char *) "vgid", CONTEXT_VGID
},
279 { (char *) "vegid", CONTEXT_VEGID
},
280 { (char *) "vsgid", CONTEXT_VSGID
},
284 /* Perf per-CPU counters */
285 PERF_HW("perf:cpu:cpu-cycles", CPU_CYCLES
,
286 CONTEXT_PERF_CPU_COUNTER
, 0),
287 PERF_HW("perf:cpu:cycles", CPU_CYCLES
,
288 CONTEXT_PERF_CPU_COUNTER
, 0),
289 PERF_HW("perf:cpu:stalled-cycles-frontend", STALLED_CYCLES_FRONTEND
,
290 CONTEXT_PERF_CPU_COUNTER
, 0),
291 PERF_HW("perf:cpu:idle-cycles-frontend", STALLED_CYCLES_FRONTEND
,
292 CONTEXT_PERF_CPU_COUNTER
, 0),
293 PERF_HW("perf:cpu:stalled-cycles-backend", STALLED_CYCLES_BACKEND
,
294 CONTEXT_PERF_CPU_COUNTER
, 0),
295 PERF_HW("perf:cpu:idle-cycles-backend", STALLED_CYCLES_BACKEND
,
296 CONTEXT_PERF_CPU_COUNTER
, 0),
297 PERF_HW("perf:cpu:instructions", INSTRUCTIONS
,
298 CONTEXT_PERF_CPU_COUNTER
, 0),
299 PERF_HW("perf:cpu:cache-references", CACHE_REFERENCES
,
300 CONTEXT_PERF_CPU_COUNTER
, 0),
301 PERF_HW("perf:cpu:cache-misses", CACHE_MISSES
,
302 CONTEXT_PERF_CPU_COUNTER
, 0),
303 PERF_HW("perf:cpu:branch-instructions", BRANCH_INSTRUCTIONS
,
304 CONTEXT_PERF_CPU_COUNTER
, 0),
305 PERF_HW("perf:cpu:branches", BRANCH_INSTRUCTIONS
,
306 CONTEXT_PERF_CPU_COUNTER
, 0),
307 PERF_HW("perf:cpu:branch-misses", BRANCH_MISSES
,
308 CONTEXT_PERF_CPU_COUNTER
, 0),
309 PERF_HW("perf:cpu:bus-cycles", BUS_CYCLES
,
310 CONTEXT_PERF_CPU_COUNTER
, 0),
312 PERF_HW_CACHE("perf:cpu:L1-dcache", L1D
,
313 CONTEXT_PERF_CPU_COUNTER
, 0),
314 PERF_HW_CACHE("perf:cpu:L1-icache", L1I
,
315 CONTEXT_PERF_CPU_COUNTER
, 0),
316 PERF_HW_CACHE("perf:cpu:LLC", LL
,
317 CONTEXT_PERF_CPU_COUNTER
, 0),
318 PERF_HW_CACHE("perf:cpu:dTLB", DTLB
,
319 CONTEXT_PERF_CPU_COUNTER
, 0),
320 _PERF_HW_CACHE("perf:cpu:iTLB-loads", ITLB
,
321 CONTEXT_PERF_CPU_COUNTER
, READ
, ACCESS
, 0),
322 _PERF_HW_CACHE("perf:cpu:iTLB-load-misses", ITLB
,
323 CONTEXT_PERF_CPU_COUNTER
, READ
, MISS
, 0),
324 _PERF_HW_CACHE("perf:cpu:branch-loads", BPU
,
325 CONTEXT_PERF_CPU_COUNTER
, READ
, ACCESS
, 0),
326 _PERF_HW_CACHE("perf:cpu:branch-load-misses", BPU
,
327 CONTEXT_PERF_CPU_COUNTER
, READ
, MISS
, 0),
329 PERF_SW("perf:cpu:cpu-clock", CPU_CLOCK
,
330 CONTEXT_PERF_CPU_COUNTER
, 0),
331 PERF_SW("perf:cpu:task-clock", TASK_CLOCK
,
332 CONTEXT_PERF_CPU_COUNTER
, 0),
333 PERF_SW("perf:cpu:page-fault", PAGE_FAULTS
,
334 CONTEXT_PERF_CPU_COUNTER
, 0),
335 PERF_SW("perf:cpu:faults", PAGE_FAULTS
,
336 CONTEXT_PERF_CPU_COUNTER
, 0),
337 PERF_SW("perf:cpu:major-faults", PAGE_FAULTS_MAJ
,
338 CONTEXT_PERF_CPU_COUNTER
, 0),
339 PERF_SW("perf:cpu:minor-faults", PAGE_FAULTS_MIN
,
340 CONTEXT_PERF_CPU_COUNTER
, 0),
341 PERF_SW("perf:cpu:context-switches", CONTEXT_SWITCHES
,
342 CONTEXT_PERF_CPU_COUNTER
, 0),
343 PERF_SW("perf:cpu:cs", CONTEXT_SWITCHES
,
344 CONTEXT_PERF_CPU_COUNTER
, 0),
345 PERF_SW("perf:cpu:cpu-migrations", CPU_MIGRATIONS
,
346 CONTEXT_PERF_CPU_COUNTER
, 0),
347 PERF_SW("perf:cpu:migrations", CPU_MIGRATIONS
,
348 CONTEXT_PERF_CPU_COUNTER
, 0),
349 PERF_SW("perf:cpu:alignment-faults", ALIGNMENT_FAULTS
,
350 CONTEXT_PERF_CPU_COUNTER
, 0),
351 PERF_SW("perf:cpu:emulation-faults", EMULATION_FAULTS
,
352 CONTEXT_PERF_CPU_COUNTER
, 0),
354 /* Perf per-thread counters */
355 PERF_HW("perf:thread:cpu-cycles", CPU_CYCLES
,
356 CONTEXT_PERF_THREAD_COUNTER
, 0),
357 PERF_HW("perf:thread:cycles", CPU_CYCLES
,
358 CONTEXT_PERF_THREAD_COUNTER
, 0),
359 PERF_HW("perf:thread:stalled-cycles-frontend", STALLED_CYCLES_FRONTEND
,
360 CONTEXT_PERF_THREAD_COUNTER
, 0),
361 PERF_HW("perf:thread:idle-cycles-frontend", STALLED_CYCLES_FRONTEND
,
362 CONTEXT_PERF_THREAD_COUNTER
, 0),
363 PERF_HW("perf:thread:stalled-cycles-backend", STALLED_CYCLES_BACKEND
,
364 CONTEXT_PERF_THREAD_COUNTER
, 0),
365 PERF_HW("perf:thread:idle-cycles-backend", STALLED_CYCLES_BACKEND
,
366 CONTEXT_PERF_THREAD_COUNTER
, 0),
367 PERF_HW("perf:thread:instructions", INSTRUCTIONS
,
368 CONTEXT_PERF_THREAD_COUNTER
, 0),
369 PERF_HW("perf:thread:cache-references", CACHE_REFERENCES
,
370 CONTEXT_PERF_THREAD_COUNTER
, 0),
371 PERF_HW("perf:thread:cache-misses", CACHE_MISSES
,
372 CONTEXT_PERF_THREAD_COUNTER
, 0),
373 PERF_HW("perf:thread:branch-instructions", BRANCH_INSTRUCTIONS
,
374 CONTEXT_PERF_THREAD_COUNTER
, 0),
375 PERF_HW("perf:thread:branches", BRANCH_INSTRUCTIONS
,
376 CONTEXT_PERF_THREAD_COUNTER
, 0),
377 PERF_HW("perf:thread:branch-misses", BRANCH_MISSES
,
378 CONTEXT_PERF_THREAD_COUNTER
, 0),
379 PERF_HW("perf:thread:bus-cycles", BUS_CYCLES
,
380 CONTEXT_PERF_THREAD_COUNTER
, 0),
382 PERF_HW_CACHE("perf:thread:L1-dcache", L1D
,
383 CONTEXT_PERF_THREAD_COUNTER
, 0),
384 PERF_HW_CACHE("perf:thread:L1-icache", L1I
,
385 CONTEXT_PERF_THREAD_COUNTER
, 0),
386 PERF_HW_CACHE("perf:thread:LLC", LL
,
387 CONTEXT_PERF_THREAD_COUNTER
, 0),
388 PERF_HW_CACHE("perf:thread:dTLB", DTLB
,
389 CONTEXT_PERF_THREAD_COUNTER
, 0),
390 _PERF_HW_CACHE("perf:thread:iTLB-loads", ITLB
,
391 CONTEXT_PERF_THREAD_COUNTER
, READ
, ACCESS
, 0),
392 _PERF_HW_CACHE("perf:thread:iTLB-load-misses", ITLB
,
393 CONTEXT_PERF_THREAD_COUNTER
, READ
, MISS
, 0),
394 _PERF_HW_CACHE("perf:thread:branch-loads", BPU
,
395 CONTEXT_PERF_THREAD_COUNTER
, READ
, ACCESS
, 0),
396 _PERF_HW_CACHE("perf:thread:branch-load-misses", BPU
,
397 CONTEXT_PERF_THREAD_COUNTER
, READ
, MISS
, 0),
399 PERF_SW("perf:thread:cpu-clock", CPU_CLOCK
,
400 CONTEXT_PERF_THREAD_COUNTER
, 0),
401 PERF_SW("perf:thread:task-clock", TASK_CLOCK
,
402 CONTEXT_PERF_THREAD_COUNTER
, 0),
403 PERF_SW("perf:thread:page-fault", PAGE_FAULTS
,
404 CONTEXT_PERF_THREAD_COUNTER
, 0),
405 PERF_SW("perf:thread:faults", PAGE_FAULTS
,
406 CONTEXT_PERF_THREAD_COUNTER
, 0),
407 PERF_SW("perf:thread:major-faults", PAGE_FAULTS_MAJ
,
408 CONTEXT_PERF_THREAD_COUNTER
, 0),
409 PERF_SW("perf:thread:minor-faults", PAGE_FAULTS_MIN
,
410 CONTEXT_PERF_THREAD_COUNTER
, 0),
411 PERF_SW("perf:thread:context-switches", CONTEXT_SWITCHES
,
412 CONTEXT_PERF_THREAD_COUNTER
, 0),
413 PERF_SW("perf:thread:cs", CONTEXT_SWITCHES
,
414 CONTEXT_PERF_THREAD_COUNTER
, 0),
415 PERF_SW("perf:thread:cpu-migrations", CPU_MIGRATIONS
,
416 CONTEXT_PERF_THREAD_COUNTER
, 0),
417 PERF_SW("perf:thread:migrations", CPU_MIGRATIONS
,
418 CONTEXT_PERF_THREAD_COUNTER
, 0),
419 PERF_SW("perf:thread:alignment-faults", ALIGNMENT_FAULTS
,
420 CONTEXT_PERF_THREAD_COUNTER
, 0),
421 PERF_SW("perf:thread:emulation-faults", EMULATION_FAULTS
,
422 CONTEXT_PERF_THREAD_COUNTER
, 0),
425 * Perf per-CPU counters, backward compatibilty for names.
426 * Hidden from help listing.
428 PERF_HW("perf:cpu-cycles", CPU_CYCLES
,
429 CONTEXT_PERF_COUNTER
, 1),
430 PERF_HW("perf:cycles", CPU_CYCLES
,
431 CONTEXT_PERF_COUNTER
, 1),
432 PERF_HW("perf:stalled-cycles-frontend", STALLED_CYCLES_FRONTEND
,
433 CONTEXT_PERF_COUNTER
, 1),
434 PERF_HW("perf:idle-cycles-frontend", STALLED_CYCLES_FRONTEND
,
435 CONTEXT_PERF_COUNTER
, 1),
436 PERF_HW("perf:stalled-cycles-backend", STALLED_CYCLES_BACKEND
,
437 CONTEXT_PERF_COUNTER
, 1),
438 PERF_HW("perf:idle-cycles-backend", STALLED_CYCLES_BACKEND
,
439 CONTEXT_PERF_COUNTER
, 1),
440 PERF_HW("perf:instructions", INSTRUCTIONS
,
441 CONTEXT_PERF_COUNTER
, 1),
442 PERF_HW("perf:cache-references", CACHE_REFERENCES
,
443 CONTEXT_PERF_COUNTER
, 1),
444 PERF_HW("perf:cache-misses", CACHE_MISSES
,
445 CONTEXT_PERF_COUNTER
, 1),
446 PERF_HW("perf:branch-instructions", BRANCH_INSTRUCTIONS
,
447 CONTEXT_PERF_COUNTER
, 1),
448 PERF_HW("perf:branches", BRANCH_INSTRUCTIONS
,
449 CONTEXT_PERF_COUNTER
, 1),
450 PERF_HW("perf:branch-misses", BRANCH_MISSES
,
451 CONTEXT_PERF_COUNTER
, 1),
452 PERF_HW("perf:bus-cycles", BUS_CYCLES
,
453 CONTEXT_PERF_COUNTER
, 1),
455 PERF_HW_CACHE("perf:L1-dcache", L1D
,
456 CONTEXT_PERF_COUNTER
, 1),
457 PERF_HW_CACHE("perf:L1-icache", L1I
,
458 CONTEXT_PERF_COUNTER
, 1),
459 PERF_HW_CACHE("perf:LLC", LL
,
460 CONTEXT_PERF_COUNTER
, 1),
461 PERF_HW_CACHE("perf:dTLB", DTLB
,
462 CONTEXT_PERF_COUNTER
, 1),
463 _PERF_HW_CACHE("perf:iTLB-loads", ITLB
,
464 CONTEXT_PERF_COUNTER
, READ
, ACCESS
, 1),
465 _PERF_HW_CACHE("perf:iTLB-load-misses", ITLB
,
466 CONTEXT_PERF_COUNTER
, READ
, MISS
, 1),
467 _PERF_HW_CACHE("perf:branch-loads", BPU
,
468 CONTEXT_PERF_COUNTER
, READ
, ACCESS
, 1),
469 _PERF_HW_CACHE("perf:branch-load-misses", BPU
,
470 CONTEXT_PERF_COUNTER
, READ
, MISS
, 1),
472 PERF_SW("perf:cpu-clock", CPU_CLOCK
,
473 CONTEXT_PERF_COUNTER
, 1),
474 PERF_SW("perf:task-clock", TASK_CLOCK
,
475 CONTEXT_PERF_COUNTER
, 1),
476 PERF_SW("perf:page-fault", PAGE_FAULTS
,
477 CONTEXT_PERF_COUNTER
, 1),
478 PERF_SW("perf:faults", PAGE_FAULTS
,
479 CONTEXT_PERF_COUNTER
, 1),
480 PERF_SW("perf:major-faults", PAGE_FAULTS_MAJ
,
481 CONTEXT_PERF_COUNTER
, 1),
482 PERF_SW("perf:minor-faults", PAGE_FAULTS_MIN
,
483 CONTEXT_PERF_COUNTER
, 1),
484 PERF_SW("perf:context-switches", CONTEXT_SWITCHES
,
485 CONTEXT_PERF_COUNTER
, 1),
486 PERF_SW("perf:cs", CONTEXT_SWITCHES
,
487 CONTEXT_PERF_COUNTER
, 1),
488 PERF_SW("perf:cpu-migrations", CPU_MIGRATIONS
,
489 CONTEXT_PERF_COUNTER
, 1),
490 PERF_SW("perf:migrations", CPU_MIGRATIONS
,
491 CONTEXT_PERF_COUNTER
, 1),
492 PERF_SW("perf:alignment-faults", ALIGNMENT_FAULTS
,
493 CONTEXT_PERF_COUNTER
, 1),
494 PERF_SW("perf:emulation-faults", EMULATION_FAULTS
,
495 CONTEXT_PERF_COUNTER
, 1),
497 { NULL
, -1 }, /* Closure */
501 #undef _PERF_HW_CACHE
506 * Context type for command line option parsing.
509 struct ctx_opts
*opt
;
510 struct cds_list_head list
;
514 * List of context type. Use to enable multiple context on a single command
517 struct ctx_type_list
{
518 struct cds_list_head head
;
520 .head
= CDS_LIST_HEAD_INIT(ctx_type_list
.head
),
526 * Find context numerical value from string.
528 * Return -1 if not found.
530 static int find_ctx_type_idx(const char *opt
)
534 while (ctx_opts
[i
].symbol
!= NULL
) {
535 if (strcmp(opt
, ctx_opts
[i
].symbol
) == 0) {
548 enum lttng_domain_type
get_domain(void)
551 return LTTNG_DOMAIN_KERNEL
;
552 } else if (opt_userspace
) {
553 return LTTNG_DOMAIN_UST
;
554 } else if (opt_jul
) {
555 return LTTNG_DOMAIN_JUL
;
556 } else if (opt_log4j
) {
557 return LTTNG_DOMAIN_LOG4J
;
574 ret
= fileno(stdout
);
576 PERROR("Unable to retrieve fileno of stdout");
581 writer
= mi_lttng_writer_create(ret
, lttng_opt_mi
);
587 /* Open command element */
588 ret
= mi_lttng_writer_command_open(writer
,
589 mi_lttng_element_command_add_context
);
595 /* Open output element */
596 ret
= mi_lttng_writer_open_element(writer
,
597 mi_lttng_element_command_output
);
607 int mi_close(enum cmd_error_code success
)
616 /* Close output element */
617 ret
= mi_lttng_writer_close_element(writer
);
624 ret
= mi_lttng_writer_write_element_bool(writer
,
625 mi_lttng_element_command_success
, !success
);
631 /* Command element close */
632 ret
= mi_lttng_writer_command_close(writer
);
642 void populate_context(struct lttng_event_context
*context
,
643 const struct ctx_opts
*opt
)
647 context
->ctx
= (enum lttng_event_context_type
) opt
->ctx_type
;
648 switch (context
->ctx
) {
649 case LTTNG_EVENT_CONTEXT_PERF_COUNTER
:
650 case LTTNG_EVENT_CONTEXT_PERF_CPU_COUNTER
:
651 case LTTNG_EVENT_CONTEXT_PERF_THREAD_COUNTER
:
652 context
->u
.perf_counter
.type
= opt
->u
.perf
.type
;
653 context
->u
.perf_counter
.config
= opt
->u
.perf
.config
;
654 strncpy(context
->u
.perf_counter
.name
, opt
->symbol
,
655 LTTNG_SYMBOL_NAME_LEN
);
656 context
->u
.perf_counter
.name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
657 /* Replace : and - by _ */
658 while ((ptr
= strchr(context
->u
.perf_counter
.name
, '-')) != NULL
) {
661 while ((ptr
= strchr(context
->u
.perf_counter
.name
, ':')) != NULL
) {
665 case LTTNG_EVENT_CONTEXT_APP_CONTEXT
:
666 context
->u
.app_ctx
.provider_name
=
667 opt
->u
.app_ctx
.provider_name
;
668 context
->u
.app_ctx
.ctx_name
=
669 opt
->u
.app_ctx
.ctx_name
;
677 * Pretty print context type.
680 int print_ctx_type(void)
686 struct lttng_event_context context
;
688 memset(&context
, 0, sizeof(context
));
697 /* Open a contexts element */
698 ret
= mi_lttng_writer_open_element(writer
, config_element_contexts
);
705 while (ctx_opts
[i
].symbol
!= NULL
) {
706 if (!ctx_opts
[i
].hide_help
) {
708 populate_context(&context
, &ctx_opts
[i
]);
709 ret
= mi_lttng_context(writer
, &context
, 1);
715 ret
= mi_lttng_writer_write_element_string(
717 mi_lttng_element_context_symbol
,
724 ret
= mi_lttng_writer_close_element(writer
);
730 fprintf(ofp
, "%s\n", ctx_opts
[i
].symbol
);
737 /* Close contexts element */
738 ret
= mi_lttng_writer_close_element(writer
);
753 * Add context to channel or event.
755 static int add_context(char *session_name
)
757 int ret
= CMD_SUCCESS
, warn
= 0, success
= 0;
758 struct lttng_event_context context
;
759 struct lttng_domain dom
;
760 struct ctx_type
*type
;
762 memset(&context
, 0, sizeof(context
));
763 memset(&dom
, 0, sizeof(dom
));
765 dom
.type
= get_domain();
766 handle
= lttng_create_handle(session_name
, &dom
);
767 if (handle
== NULL
) {
773 /* Open a contexts element */
774 ret
= mi_lttng_writer_open_element(writer
, config_element_contexts
);
780 /* Iterate over all the context types given */
781 cds_list_for_each_entry(type
, &ctx_type_list
.head
, list
) {
782 DBG("Adding context...");
784 populate_context(&context
, type
->opt
);
787 /* We leave context open the update the success of the command */
788 ret
= mi_lttng_context(writer
, &context
, 1);
794 ret
= mi_lttng_writer_write_element_string(writer
,
795 mi_lttng_element_context_symbol
,
803 ret
= lttng_add_context(handle
, &context
, NULL
, opt_channel_name
);
805 ERR("%s: %s", type
->opt
->symbol
, lttng_strerror(ret
));
809 if (opt_channel_name
) {
810 MSG("%s context %s added to channel %s",
811 get_domain_str(dom
.type
), type
->opt
->symbol
,
814 MSG("%s context %s added to all channels",
815 get_domain_str(dom
.type
), type
->opt
->symbol
);
821 /* Is the single operation a success ? */
822 ret
= mi_lttng_writer_write_element_bool(writer
,
823 mi_lttng_element_success
, success
);
829 /* Close the context element */
830 ret
= mi_lttng_writer_close_element(writer
);
839 /* Close contexts element */
840 ret
= mi_lttng_writer_close_element(writer
);
849 lttng_destroy_handle(handle
);
852 * This means that at least one add_context failed and tells the user to
853 * look on stderr for error(s).
862 void destroy_ctx_type(struct ctx_type
*type
)
868 free(type
->opt
->symbol
);
875 struct ctx_type
*create_ctx_type(void)
877 struct ctx_type
*type
= zmalloc(sizeof(*type
));
880 PERROR("malloc ctx_type");
884 type
->opt
= zmalloc(sizeof(*type
->opt
));
886 PERROR("malloc ctx_type options");
887 destroy_ctx_type(type
);
896 int find_ctx_type_perf_raw(const char *ctx
, struct ctx_type
*type
)
900 char *tmp_list
, *cur_list
;
902 cur_list
= tmp_list
= strdup(ctx
);
904 PERROR("strdup temp list");
909 /* Looking for "perf:[cpu|thread]:raw:<mask>:<name>". */
913 next
= strtok(cur_list
, ":");
920 if (strncmp(next
, "perf", 4) != 0) {
926 if (strncmp(next
, "cpu", 3) == 0) {
927 type
->opt
->ctx_type
= CONTEXT_PERF_CPU_COUNTER
;
928 } else if (strncmp(next
, "thread", 4) == 0) {
929 type
->opt
->ctx_type
= CONTEXT_PERF_THREAD_COUNTER
;
936 if (strncmp(next
, "raw", 3) != 0) {
945 if (strlen(next
) < 2 || next
[0] != 'r') {
946 ERR("Wrong perf raw mask format: expected rNNN");
951 type
->opt
->u
.perf
.config
= strtoll(next
+ 1, &endptr
, 16);
952 if (errno
!= 0 || !endptr
|| *endptr
) {
953 ERR("Wrong perf raw mask format: expected rNNN");
963 ERR("Too many ':' in perf raw format");
971 ERR("Invalid perf counter specifier, expected a specifier of "
972 "the form perf:cpu:raw:rNNN:<name> or "
973 "perf:thread:raw:rNNN:<name>");
987 struct ctx_type
*get_context_type(const char *ctx
)
990 struct ctx_type
*type
= NULL
;
991 const char app_ctx_prefix
[] = "$app.";
992 char *provider_name
= NULL
, *ctx_name
= NULL
;
993 size_t i
, len
, colon_pos
= 0, provider_name_len
, ctx_name_len
;
999 type
= create_ctx_type();
1004 /* Check if ctx matches a known static context. */
1005 opt_index
= find_ctx_type_idx(ctx
);
1006 if (opt_index
>= 0) {
1007 *type
->opt
= ctx_opts
[opt_index
];
1008 type
->opt
->symbol
= strdup(ctx_opts
[opt_index
].symbol
);
1012 /* Check if ctx is a raw perf context. */
1013 ret
= find_ctx_type_perf_raw(ctx
, type
);
1015 type
->opt
->u
.perf
.type
= PERF_TYPE_RAW
;
1016 type
->opt
->symbol
= strdup(ctx
);
1017 if (!type
->opt
->symbol
) {
1018 PERROR("Copy perf field name");
1025 * No match found against static contexts; check if it is an app
1029 if (len
<= sizeof(app_ctx_prefix
) - 1) {
1033 /* String starts with $app. */
1034 if (strncmp(ctx
, app_ctx_prefix
, sizeof(app_ctx_prefix
) - 1)) {
1038 /* Validate that the ':' separator is present. */
1039 for (i
= sizeof(app_ctx_prefix
); i
< len
; i
++) {
1040 const char c
= ctx
[i
];
1049 * No colon found or no ctx name ("$app.provider:") or no provider name
1050 * given ("$app.:..."), which is invalid.
1052 if (!colon_pos
|| colon_pos
== len
||
1053 colon_pos
== sizeof(app_ctx_prefix
)) {
1054 ERR("Invalid application context provided: no provider or context name provided.");
1058 provider_name_len
= colon_pos
- sizeof(app_ctx_prefix
) + 2;
1059 provider_name
= zmalloc(provider_name_len
);
1060 if (!provider_name
) {
1061 PERROR("malloc provider_name");
1064 strncpy(provider_name
, ctx
+ sizeof(app_ctx_prefix
) - 1,
1065 provider_name_len
- 1);
1066 type
->opt
->u
.app_ctx
.provider_name
= provider_name
;
1068 ctx_name_len
= len
- colon_pos
;
1069 ctx_name
= zmalloc(ctx_name_len
);
1071 PERROR("malloc ctx_name");
1074 strncpy(ctx_name
, ctx
+ colon_pos
+ 1, ctx_name_len
- 1);
1075 type
->opt
->u
.app_ctx
.ctx_name
= ctx_name
;
1076 type
->opt
->ctx_type
= CONTEXT_APP_CONTEXT
;
1077 type
->opt
->symbol
= strdup(ctx
);
1081 free(provider_name
);
1083 destroy_ctx_type(type
);
1088 * Add context to channel or event.
1090 int cmd_add_context(int argc
, const char **argv
)
1092 int opt
, ret
= CMD_SUCCESS
, command_ret
= CMD_SUCCESS
;
1093 static poptContext pc
;
1094 struct ctx_type
*type
, *tmptype
;
1095 char *session_name
= NULL
;
1096 const char *leftover
= NULL
;
1103 pc
= poptGetContext(NULL
, argc
, argv
, long_options
, 0);
1104 poptReadDefaultConfig(pc
, 0);
1106 while ((opt
= poptGetNextOpt(pc
)) != -1) {
1112 ret
= print_ctx_type();
1116 type
= get_context_type(opt_type
);
1118 ERR("Unknown context type %s", opt_type
);
1122 cds_list_add_tail(&type
->list
, &ctx_type_list
.head
);
1134 case OPT_LIST_OPTIONS
:
1135 list_cmd_options(stdout
, long_options
);
1138 ret
= CMD_UNDEFINED
;
1143 leftover
= poptGetArg(pc
);
1145 ERR("Unknown argument: %s", leftover
);
1150 ret
= print_missing_or_multiple_domains(
1151 opt_kernel
+ opt_userspace
+ opt_jul
+ opt_log4j
, true);
1158 ERR("Missing mandatory -t TYPE");
1163 if (!opt_session_name
) {
1164 session_name
= get_session_name();
1165 if (session_name
== NULL
) {
1170 session_name
= opt_session_name
;
1178 command_ret
= add_context(session_name
);
1179 ret
= mi_close(command_ret
);
1185 if (!opt_session_name
) {
1190 if (writer
&& mi_lttng_writer_destroy(writer
)) {
1191 /* Preserve original error code */
1192 ret
= ret
? ret
: LTTNG_ERR_MI_IO_FAIL
;
1195 /* Cleanup allocated memory */
1196 cds_list_for_each_entry_safe(type
, tmptype
, &ctx_type_list
.head
, list
) {
1197 destroy_ctx_type(type
);
1200 /* Overwrite ret if an error occurred during add_context() */
1201 ret
= command_ret
? command_ret
: ret
;
1203 poptFreeContext(pc
);