]> git.proxmox.com Git - ceph.git/blob - ceph/src/seastar/dpdk/doc/guides/tools/pdump.rst
import 15.2.0 Octopus source
[ceph.git] / ceph / src / seastar / dpdk / doc / guides / tools / pdump.rst
1 .. SPDX-License-Identifier: BSD-3-Clause
2 Copyright(c) 2016 Intel Corporation.
3
4 .. _pdump_tool:
5
6 dpdk-pdump Application
7 ======================
8
9 The ``dpdk-pdump`` tool is a Data Plane Development Kit (DPDK) tool that runs as
10 a DPDK secondary process and is capable of enabling packet capture on dpdk ports.
11
12 .. Note::
13 * The ``dpdk-pdump`` tool can only be used in conjunction with a primary
14 application which has the packet capture framework initialized already.
15 In dpdk, only the ``testpmd`` is modified to initialize packet capture
16 framework, other applications remain untouched. So, if the ``dpdk-pdump``
17 tool has to be used with any application other than the testpmd, user
18 needs to explicitly modify that application to call packet capture
19 framework initialization code. Refer ``app/test-pmd/testpmd.c``
20 code to see how this is done.
21
22 * The ``dpdk-pdump`` tool depends on libpcap based PMD which is disabled
23 by default in the build configuration files,
24 owing to an external dependency on the libpcap development files
25 which must be installed on the board.
26 Once the libpcap development files are installed, the libpcap based PMD
27 can be enabled by setting CONFIG_RTE_LIBRTE_PMD_PCAP=y and recompiling the DPDK.
28
29
30 Running the Application
31 -----------------------
32
33 The tool has a number of command line options:
34
35 .. code-block:: console
36
37 ./build/app/dpdk-pdump --
38 [--multi]
39 --pdump '(port=<port id> | device_id=<pci id or vdev name>),
40 (queue=<queue_id>),
41 (rx-dev=<iface or pcap file> |
42 tx-dev=<iface or pcap file>),
43 [ring-size=<ring size>],
44 [mbuf-size=<mbuf data size>],
45 [total-num-mbufs=<number of mbufs>]'
46
47 The ``--multi`` command line option is optional argument. If passed, capture
48 will be running on unique cores for all ``--pdump`` options. If ignored,
49 capture will be running on single core for all ``--pdump`` options.
50
51 The ``--pdump`` command line option is mandatory and it takes various sub arguments which are described in
52 below section.
53
54 .. Note::
55
56 * Parameters inside the parentheses represents mandatory parameters.
57
58 * Parameters inside the square brackets represents optional parameters.
59
60 * Multiple instances of ``--pdump`` can be passed to capture packets on different port and queue combinations.
61
62
63 The ``--pdump`` parameters
64 ~~~~~~~~~~~~~~~~~~~~~~~~~~
65
66 ``port``:
67 Port id of the eth device on which packets should be captured.
68
69 ``device_id``:
70 PCI address (or) name of the eth device on which packets should be captured.
71
72 .. Note::
73
74 * As of now the ``dpdk-pdump`` tool cannot capture the packets of virtual devices
75 in the primary process due to a bug in the ethdev library. Due to this bug, in a multi process context,
76 when the primary and secondary have different ports set, then the secondary process
77 (here the ``dpdk-pdump`` tool) overwrites the ``rte_eth_devices[]`` entries of the primary process.
78
79 ``queue``:
80 Queue id of the eth device on which packets should be captured. The user can pass a queue value of ``*`` to enable
81 packet capture on all queues of the eth device.
82
83 ``rx-dev``:
84 Can be either a pcap file name or any Linux iface.
85
86 ``tx-dev``:
87 Can be either a pcap file name or any Linux iface.
88
89 .. Note::
90
91 * To receive ingress packets only, ``rx-dev`` should be passed.
92
93 * To receive egress packets only, ``tx-dev`` should be passed.
94
95 * To receive ingress and egress packets separately ``rx-dev`` and ``tx-dev``
96 should both be passed with the different file names or the Linux iface names.
97
98 * To receive ingress and egress packets together, ``rx-dev`` and ``tx-dev``
99 should both be passed with the same file name or the same Linux iface name.
100
101 ``ring-size``:
102 Size of the ring. This value is used internally for ring creation. The ring will be used to enqueue the packets from
103 the primary application to the secondary. This is an optional parameter with default size 16384.
104
105 ``mbuf-size``:
106 Size of the mbuf data. This is used internally for mempool creation. Ideally this value must be same as
107 the primary application's mempool's mbuf data size which is used for packet RX. This is an optional parameter with
108 default size 2176.
109
110 ``total-num-mbufs``:
111 Total number mbufs in mempool. This is used internally for mempool creation. This is an optional parameter with default
112 value 65535.
113
114
115 Example
116 -------
117
118 .. code-block:: console
119
120 $ sudo ./build/app/dpdk-pdump -l 3 -- --pdump 'port=0,queue=*,rx-dev=/tmp/rx.pcap'
121 $ sudo ./build/app/dpdk-pdump -l 3,4,5 -- --multi --pdump 'port=0,queue=*,rx-dev=/tmp/rx-1.pcap' --pdump 'port=1,queue=*,rx-dev=/tmp/rx-2.pcap'