|
| 1 | +# Linux trace tool |
| 2 | + |
| 3 | + |
| 4 | +## Introduction |
| 5 | + |
| 6 | +This python tool helps to analysis media stack trace logs combining ftrace events from libva, media driver and Linux kernel mode driver (e.g. i915). |
| 7 | + |
| 8 | + |
| 9 | +## Linux trace capture |
| 10 | + |
| 11 | +1. Install trace-cmd: |
| 12 | + |
| 13 | + sudo apt-get install trace-cmd |
| 14 | + |
| 15 | +2. Grant write access to trace node for application: |
| 16 | + |
| 17 | + sudo chmod 777 /sys/kernel/debug/ |
| 18 | + sudo chmod 777 /sys/kernel/debug/tracing/ |
| 19 | + sudo chmod 777 /sys/kernel/debug/tracing/trace_marker_raw |
| 20 | + |
| 21 | +3. Enable libva trace: |
| 22 | + |
| 23 | + export LIBVA_TRACE = FTRACE |
| 24 | + |
| 25 | + to enable libva buffer data capture |
| 26 | + |
| 27 | + export LIBVA_TRACE_BUFDATA = 1 |
| 28 | + |
| 29 | +4. Run application under trace-cmd in a proxy mode: |
| 30 | + |
| 31 | + trace-cmd record -e i915 <workflow-cmd-line> |
| 32 | + |
| 33 | +5. Output is "trace.dat" |
| 34 | + |
| 35 | +Alternatively you can collect trace data in separate terminal. |
| 36 | +It is useful if you want to profile daemon or a service: |
| 37 | + |
| 38 | +1. Start trace capture: |
| 39 | + |
| 40 | + sudo trace-cmd record -e i915 |
| 41 | + |
| 42 | +2. Run test app in another terminal |
| 43 | +3. Stop capturing in the first terminal |
| 44 | +4. Output is "trace.dat" |
| 45 | + |
| 46 | + |
| 47 | +## Trace post-processing and analysis |
| 48 | + |
| 49 | + python3 main.py [-raw] file.dat|file.etl [file.dat|file.etl ...] |
| 50 | + |
| 51 | +Options: |
| 52 | + |
| 53 | +* `-raw` - Parse trace events and dump into <trace-file>.csv file. |
| 54 | + |
| 55 | +Output: |
| 56 | + |
| 57 | +* `<trace-file>.json.gz` - visualized trace activity, open in `<chrome://tracing/>` or `<edge://tracing/>` |
| 58 | +* `<trace-file>_stat.csv` - statistic of trace activity, open in Excel |
| 59 | +* `<trace-file>_surface.csv` - surface attributes and runtime usage in GPU, open in Excel |
| 60 | +* `<trace-file>_rtlog.txt` - iHD driver runtime log |
| 61 | + |
| 62 | + |
| 63 | +## Trace tool manifests |
| 64 | + |
| 65 | +Trace tool uses manifests to decode trace data. Each trace module available in trace tool |
| 66 | +needs to have a manifest file in manifests folder. The manifest file could be either in |
| 67 | +MSFT ETW XML manifest format or in json format. Current supported traces: |
| 68 | + |
| 69 | +* [libva_trace.man](./manifests/libva_trace.man) - libva trace manifest in MSFT ETW XML |
| 70 | +* [Intel-Media-Open.json](./manifests/Intel-Media-Open.json) - iHD media driver trace manifest in json |
| 71 | + |
| 72 | +## Trace Modules |
| 73 | + |
| 74 | +Trace tool loads trace modules from the [modules](./modules) folder. Two types of modules |
| 75 | +are supported: |
| 76 | + |
| 77 | +* Trace readers |
| 78 | +* Trace handlers |
| 79 | + |
| 80 | +Readers support reading data from the trace without performing any action on the read data. |
| 81 | +Handlers perform actions over read data. Effectively trace readers provide input to trace |
| 82 | +handlers. |
| 83 | + |
| 84 | +Trace tool loads modules by class names. |
| 85 | + |
| 86 | +### Trace core |
| 87 | + |
| 88 | +Trace core loads trace modules making them available for trace tool. Key interfaces: |
| 89 | + |
| 90 | +| Interface | Description | |
| 91 | +| --------- | ----------- | |
| 92 | +| `core.regParser(id, parser) -> int` | Registers trace header `parser` to the core. `id` is 4bytes trace identifier. | |
| 93 | +| `core.regHandler(sys, name, handler) -> None` | Registers event handler. Set name to None for common trace handler. | |
| 94 | +| `core.getContext() -> dict` | Get share context from the core. | |
| 95 | + |
| 96 | +### Trace readers |
| 97 | + |
| 98 | +Trace reader module is responsible for parsing trace file into trace events and call |
| 99 | +trace handlers one by one in event timestamp order. |
| 100 | + |
| 101 | +Trace reader is driven by trace core. The following interfaces are required to be |
| 102 | +provide by the trace reader module implentation: |
| 103 | + |
| 104 | +| Interface | Description | |
| 105 | +| --------- | ----------- | |
| 106 | +| `open(self, file, options) -> int` | Open trace file, returns 0 for sucess, < 0 for failures. User command line options are provided in args. | |
| 107 | +| `setParser(self, parsers) -> None` | Set trace header parsers. Since all Linux user space traces share single trace_marker_raw entry, each user trace(libva and iHD) need register its own header parser to identify itself. | |
| 108 | +| `syncSource(self, src) -> int` | For sync timestamp across multi trace readers. Return -1 for no support. | |
| 109 | +| `process(self, filter, handler) -> None` | Starts trace event process with filter and handler callbacks. Filter callback could speed up event process. | |
| 110 | + |
| 111 | +Currently supported trace reader modules: |
| 112 | + |
| 113 | +| Module | Description | |
| 114 | +| ---------- | ----------- | |
| 115 | +| ftrace.py | Linux ftace file reader, trace file from trace-cmd | |
| 116 | + |
| 117 | +### Trace handlers |
| 118 | + |
| 119 | +Trace event handler module customizes events handling. Since all handler modules are |
| 120 | +seperate instances, trace core provides shared context to share data between modules. |
| 121 | + |
| 122 | +By default, shared context provides the following: |
| 123 | + |
| 124 | +| Name in context | Description | |
| 125 | +| --------------- | ----------- | |
| 126 | +| `UI` | Instance of class `writeUI` (see [writeUI.py](./writeUI.py). Class writes events for chrome://tracing. | |
| 127 | +| `Stack` | Instance of class `callStack` (see [callStack.py](./callStack.py). Class provides call stack of trace event. Call stack is built from event sequence from the same process id and thread id. | |
| 128 | +| `Stat` | Instance of class `statistic` (see [statistic.py](./statistic.py). Class provides statistics for specific events. | |
| 129 | +| `Output` | Output path string in case module needs to create its own output file. | |
| 130 | + |
| 131 | +Handler module only interact with core, should not export interface to external directly. Module register its own event handlers to core through `core.regHandler(sys, name, handler)`. |
| 132 | + |
| 133 | +It is possible that multi modules register their own handlers for the same event. Core will call these callbacks one by one when target event occurs. |
| 134 | + |
| 135 | +Handler module could write output into `UI` or `Stat` in share context, also could create and write its own output file and format. Output file path is available in share context `Output`. |
| 136 | + |
| 137 | +In case a handler module is targeted to provide a common service, it could export its name and instance in share context. Its name in share context should be unique, other module use this name to get service instance. The service interface is defined by module itself. see example [surface.py](./modules/surface.py). |
| 138 | + |
| 139 | +To add new trace support, handler module for this new trace MUST register event header parser to core, through `core.regParser(id, parser)`. This event header parser is to detect and parse trace header, otherwise trace reader could not recognize this new trace. The id for this new trace should be unique. refer example [libva.py](./modules/libva.py). |
| 140 | + |
| 141 | +Currently supported handler modules: |
| 142 | +| Module | Description | |
| 143 | +| ---------- | ----------- | |
| 144 | +| i915.py | i915 trace handler to extract GPU workload submit & execution timing | |
| 145 | +| libva.py | libva trace handler | |
| 146 | +| iHD.py | Intel iHD open source media driver trace handler | |
| 147 | +| surface.py | Handler tracks surface object & attributes across iHD and i915 traces | |
| 148 | + |
| 149 | +## Making changes in the tool |
| 150 | + |
| 151 | +Make sure to run unit tests before creating PR: |
| 152 | + |
| 153 | + cd tracetool |
| 154 | + python3 -m unittest |
| 155 | + |
| 156 | +Make sure trace event and event data are backward compatible. |
| 157 | + |
0 commit comments