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 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
# Linux DTrace
This is the official Linux port of the DTrace tracing tool.
The source is posted here on github.com in the hope that it increases the
visibility for our work and to make it even easier for people to access the
source. We also use this repository to work with developers in the Linux
community.
The main development branch is [devel](https://github.com/oracle/dtrace-utils/tree/devel).
We provide prebuilt x86_64 and aarch64 DTrace userspace packages for
Oracle Linux 10 (UEK8 kernel),
Oracle Linux 9 (UEK8 or UEK7 kernel),
Oracle Linux 8 (UEK7 or UEK6 kernel),
and Oracle Linux 7 (UEK6 kernel).
The latest packages can be obtained from the following
[Oracle Linux yum server](https://yum.oracle.com) repositories:
- Oracle Linux 10 (x86_64) UEK Release 8: https://yum.oracle.com/repo/OracleLinux/OL10/UEKR8/x86_64/
- Oracle Linux 10 (aarch64) UEK Release 8: https://yum.oracle.com/repo/OracleLinux/OL10/UEKR8/aarch64/
- Oracle Linux 9 (x86_64) UEK Release 8: https://yum.oracle.com/repo/OracleLinux/OL9/UEKR8/x86_64/
- Oracle Linux 9 (aarch64) UEK Release 8: https://yum.oracle.com/repo/OracleLinux/OL9/UEKR8/aarch64/
- Oracle Linux 9 (x86_64) UEK Release 7: https://yum.oracle.com/repo/OracleLinux/OL9/UEKR7/x86_64/
- Oracle Linux 9 (aarch64) BaseOS Latest: https://yum.oracle.com/repo/OracleLinux/OL9/baseos/latest/aarch64/
- Oracle Linux 8 (x86_64) UEK Release 7: https://yum.oracle.com/repo/OracleLinux/OL8/UEKR7/x86_64/
- Oracle Linux 8 (aarch64) UEK Release 7: https://yum.oracle.com/repo/OracleLinux/OL8/UEKR7/aarch64/
- Oracle Linux 8 (x86_64) UEK Release 6: https://yum.oracle.com/repo/OracleLinux/OL8/UEKR6/x86_64/
- Oracle Linux 8 (aarch64) BaseOS Latest: https://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/aarch64/
For Oracle Linux 7, we provide RPMs up to 2.0.1-1, but building for OL7 has
been deprecated.
- Oracle Linux 7 (x86_64) UEK Release 6: https://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/x86_64/
- Oracle Linux 7 (aarch64) UEK Release 6: https://yum.oracle.com/repo/OracleLinux/OL7/UEKR6/aarch64/
Source code for the UEK kernel is available on github in the
[linux-uek repo](https://github.com/oracle/linux-uek).
## Table of Contents
* [1. License](#1-license)
* [2. How to Build DTrace](#2-how-to-build-dtrace)
* [2.1. Prerequisites](#21-prerequisites)
* [2.1.1. Verify that binutils is recent enough...](#211-verify-that-binutils-is-recent-enough)
* [2.1.2. ... or install a recent-enough binutils](#212-or-install-a-recent-enough-binutils)
* [2.1.3. Install other necessary packages](#213-install-other-necessary-packages)
* [2.2. Build DTrace](#22-build-dtrace)
* [3. Testing](#3-testing)
* [4. How to Run DTrace](#4-how-to-run-dtrace)
* [5. Questions](#5-questions)
* [6. Pull Requests and Support](#6-pull-requests-and-support)
* [7. Building Previous Releases of DTrace](#7-building-previous-releases-of-dtrace)
## 1. License
DTrace is licensed under the UPL 1.0 (Universal Permissive License).
A copy is included in this repository as the LICENSE file.
## 2. How to Build DTrace
The build instructions focus on building DTrace for the upstream Linux kernel.
We will use the 5.14.9 release, but the instructions apply to most recent Linux
kernel versions.
### 2.1. Prerequisites
Please read this section carefully before moving over to the build
documentation to ensure your environment is properly configured.
#### 2.1.1. Verify that binutils is recent enough...
DTrace uses a type introspection system called CTF. This is supported by
upstream GCC and GNU Binutils. Make sure you have binutils 2.36 or later
installed.
If your distro provides libctf.so in a binutils development package, you need
to install that too.
#### 2.1.2. or install a recent-enough binutils
If your distro provides binutils 2.36 or later, you should install it. If not,
you can build your own local copy (which can be configured with a --prefix
specific to itself to avoid disturbing the distro version).
#### 2.1.3. Install other necessary packages
A few other packages are required, either for building or at runtime. They
should be part of most Linux distributions today and can be installed via the
package manager of your distro. The table below gives package names for Debian
and Oracle Linux.
For building:
| Prerequisite | Debian | Oracle Linux |
|:-------------------|:----------------------------|:--------------------------|
| glibc headers | libc6-dev | glibc-headers |
| glibc (static) | (in libc6-dev) | glibc-static |
| glibc (32-bit dev) | libc6-dev-i386 | glibc-devel.i686 |
| bison | bison | bison |
| flex | flex | flex |
| BPF gcc | gcc-bpf | gcc-bpf-unknown-none |
| BPF binutils | binutils-bpf | binutils-bpf-unknown-none |
| libpcap dev | libpcap-dev | libpcap-devel |
| wireshark | wireshark | wireshark |
| valgrind | valgrind | valgrind-devel |
| fuse3 or fuse | libfuse3-dev or libfuse-dev | fuse3-devel or fuse-devel |
| kernel headers | linux-headers-<kver>-<arch> | kernel-uek-devel-<kver> |
| | linux-headers-<kver>-common | |
At runtime:
| Prerequisite | Debian | Oracle Linux |
|:-------------------|:-----------------------|:--------------------------|
| wireshark | wireshark | wireshark |
| fuse3 or fuse | libfuse3-3 or libfuse2 | fuse3-devel or fuse-devel |
### 2.2. Build DTrace
The simplest way of building DTrace is done by issuing the following commands
from the DTrace source tree:
```
make
sudo make install
```
Some distributions install the BPF gcc and binutils under different names. You
can specify the executables to use using the **BPFC** and **BPFLD** variables.
E.g. on Debian you could use:
```
make BPFC=bpf-gcc BPFLD=bpf-ld
sudo make install
```
See `./configure --help`, `make help`, and the top-level GNUmakefile for a
full list of options (installing in different places, building translators for
kernels, etc.)
Some of the options (e.g., those specifying paths) may need to be specified
when installing as well as when building. To avoid this, you can use the
configure script: it bakes variable settings into the makefile so that they
persist across multiple invocations, including `make install`.
## 3. Testing
A testsuite is provided in the source tree. It is run using **make** in
conjunction with one of the following targets:
| target | description |
|:--------------------------|:----------------------------------------------------------------------|
| `check-verbose` | Tests binaries from build directory. Prints result of every tests. |
| `check-installed-verbose` | Tests binaries installed in the system. Prints result of every tests. |
Example:
```
sudo make check-verbose
```
Logs from test runs are stored in `test/log/<run_number>/`.
The most recent logs are also available by via the `test/log/current/` symbolic link.
The testsuite itself has more dependencies that need to be installed.
The full list is available in the
[dtrace.spec](https://github.com/oracle/dtrace-utils/blob/devel/dtrace.spec)
file.
## 4. How to run DTrace
The `dtrace` binary is installed in /usr/**sbin**/dtrace.
Currently, you can only run dtrace with root privileges.
Be careful not to confuse the utility with **SystemTap's dtrace** script,
which is installed in /usr/**bin**/dtrace.
## 5. Questions
For questions, please ask on the [dtrace mailing list](https://lore.kernel.org/dtrace/).
Older discussions are archived [here](https://oss.oracle.com/pipermail/dtrace-devel/).
We have a #linux-dtrace IRC channel on irc.libera.chat, you can
ask questions there as well.
## 6. Pull Requests and Support
We currently do not accept pull requests via GitHub, please contact us
via the mailing list or IRC channel listed above.
The source code for DTrace is published here without support. Compiled binaries are provided as part of Oracle Linux, which is [free to download](http://www.oracle.com/technetwork/server-storage/linux/downloads/index.html), distribute and use.
Support for DTrace is included in Oracle Linux support subscriptions. Individual packages and updates are available on the [Oracle Linux yum server](https://yum.oracle.com).
## 7. Building Previous Releases of DTrace
Refer to [these instructions](./README.pre-1.13.2.md) to build DTrace versions
prior to 2.0.0-1.13.2.
|