1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
=head1 NAME
xentrace - capture Xen trace buffer data
=head1 SYNOPSIS
B<xentrace> [ I<OPTIONS> ] [ I<FILE> ]
=head1 DESCRIPTION
B<xentrace> is used to capture trace buffer data from Xen. The data is
output in the following binary format (host endian):
CPU(uint) TSC(u64) EVENT(u32) D1 D2 D3 D4 D5 (all u32)
Where CPU is the processor number, TSC is the record's timestamp
(the value of the CPU cycle counter), EVENT is the event ID and
D1...D5 are the trace data.
Data is dumped onto the standard output (which must not be a TTY) or a
I<FILE> specified on the command line.
The output should be parsed using the tool xentrace_format, which can
produce human-readable output in ASCII format.
=head1 OPTIONS
=over 4
=item B<-t> I<l>, B<--log-thresh>=I<l>
set the threshold number, I<l>, of new records required to trigger a write of
all new records to the output
=item B<-s> I<p>, B<--poll-sleep>=I<p>
set the time, I<p>, (in milliseconds) to sleep between polling the buffers
for new data.
=item B<-c> [I<c>|I<CPU-LIST>|I<all>], B<--cpu-mask>=[I<c>|I<CPU-LIST>|I<all>]
This can be: a hex value (of the form 0xNNNN...), or a set of cpu
ranges as described below, or the string I<all>. Hex values are limited
to 32 bits. If not specified, the cpu-mask as set during bootup will be
constructed. If using the I<CPU-LIST> it expects decimal numbers, which
may be specified as follows:
"0-3"
Trace only on CPUs 0 through 3
"0,2,5-7"
Trace only on CPUs 0, 2, and 5 through 7
"-3"
Trace only on CPUs 0 through 3
"-3,7"
Trace only on CPUs 0 through 3 and 7
"3-"
Trace only on CPUs 3 up to maximum numbers of CPUs the host has
If using I<all> it will use all of the CPUs the host has.
=item B<-e> I<mask>, B<--evt-mask>=I<mask>
set event capture mask. If not specified the TRC_ALL will be used.
=item B<-?>, B<--help>
Give this help list
=item B<--usage>
Give a short usage message
=item B<-V>, B<--version>
Print program version
=back
=head2 Event Classes (Masks)
The following event classes (masks) can be used to filter the events being
gathered by xentrace:
ID Description
0x0001f000 TRC_GEN
0x0002f000 TRC_SCHED
0x0004f000 TRC_DOM0OP
0x0008f000 TRC_HVM
0x0010f000 TRC_MEM
0xfffff000 TRC_ALL
=head2 Event Subclasses (More Masks)
The following event subclasses (masks) can also be used to filter the events being
gathered by xentrace:
ID Description
0x00081000 TRC_HVM_ENTRYEXIT
0x00082000 TRC_HVM_HANDLER
=head2 Events
B<xentrace> collects the following events from the trace buffer:
ID Description
0x0001f001 TRC_LOST_RECORDS
0x0002f001 TRC_SCHED_DOM_ADD
0x0002f002 TRC_SCHED_DOM_REM
0x0002f003 TRC_SCHED_SLEEP
0x0002f004 TRC_SCHED_WAKE
0x0002f005 TRC_SCHED_YIELD
0x0002f006 TRC_SCHED_BLOCK
0x0002f007 TRC_SCHED_SHUTDOWN
0x0002f008 TRC_SCHED_CTL
0x0002f009 TRC_SCHED_ADJDOM
0x0002f010 TRC_SCHED_SWITCH
0x0002f011 TRC_SCHED_S_TIMER_FN
0x0002f012 TRC_SCHED_T_TIMER_FN
0x0002f013 TRC_SCHED_DOM_TIMER_FN
0x0002f014 TRC_SCHED_SWITCH_INFPREV
0x0002f015 TRC_SCHED_SWITCH_INFNEXT
0x00081001 TRC_HVM_VMENTRY
0x00081002 TRC_HVM_VMEXIT
0x00082001 TRC_HVM_PF_XEN
0x00082002 TRC_HVM_PF_INJECT
0x00082003 TRC_HVM_INJ_EXC
0x00082004 TRC_HVM_INJ_VIRQ
0x00082005 TRC_HVM_REINJ_VIRQ
0x00082006 TRC_HVM_IO_READ
0x00082007 TRC_HVM_IO_WRITE
0x00082008 TRC_HVM_CR_READ
0x00082009 TRC_HVM_CR_WRITE
0x0008200A TRC_HVM_DR_READ
0x0008200B TRC_HVM_DR_WRITE
0x0008200C TRC_HVM_MSR_READ
0x0008200D TRC_HVM_MSR_WRITE
0x0008200E TRC_HVM_CPUID
0x0008200F TRC_HVM_INTR
0x00082010 TRC_HVM_NMI
0x00082011 TRC_HVM_SMI
0x00082012 TRC_HVM_VMMCALL
0x00082013 TRC_HVM_HLT
0x00082014 TRC_HVM_INVLPG
0x0010f001 TRC_MEM_PAGE_GRANT_MAP
0x0010f002 TRC_MEM_PAGE_GRANT_UNMAP
0x0010f003 TRC_MEM_PAGE_GRANT_TRANSFER
=head1 AUTHOR
Mark A. Williamson <mark.a.williamson@intel.com>
=head1 SEE ALSO
xentrace_format(1)
|