New upstream version 18.11
[deb_dpdk.git] / 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                           --pdump '(port=<port id> | device_id=<pci id or vdev name>),
39                                    (queue=<queue_id>),
40                                    (rx-dev=<iface or pcap file> |
41                                     tx-dev=<iface or pcap file>),
42                                    [ring-size=<ring size>],
43                                    [mbuf-size=<mbuf data size>],
44                                    [total-num-mbufs=<number of mbufs>]'
45
46 The ``--pdump`` command line option is mandatory and it takes various sub arguments which are described in
47 below section.
48
49    .. Note::
50
51       * Parameters inside the parentheses represents mandatory parameters.
52
53       * Parameters inside the square brackets represents optional parameters.
54
55       * Multiple instances of ``--pdump`` can be passed to capture packets on different port and queue combinations.
56
57
58 The ``--pdump`` parameters
59 ~~~~~~~~~~~~~~~~~~~~~~~~~~
60
61 ``port``:
62 Port id of the eth device on which packets should be captured.
63
64 ``device_id``:
65 PCI address (or) name of the eth device on which packets should be captured.
66
67    .. Note::
68
69       * As of now the ``dpdk-pdump`` tool cannot capture the packets of virtual devices
70         in the primary process due to a bug in the ethdev library. Due to this bug, in a multi process context,
71         when the primary and secondary have different ports set, then the secondary process
72         (here the ``dpdk-pdump`` tool) overwrites the ``rte_eth_devices[]`` entries of the primary process.
73
74 ``queue``:
75 Queue id of the eth device on which packets should be captured. The user can pass a queue value of ``*`` to enable
76 packet capture on all queues of the eth device.
77
78 ``rx-dev``:
79 Can be either a pcap file name or any Linux iface.
80
81 ``tx-dev``:
82 Can be either a pcap file name or any Linux iface.
83
84    .. Note::
85
86       * To receive ingress packets only, ``rx-dev`` should be passed.
87
88       * To receive egress packets only, ``tx-dev`` should be passed.
89
90       * To receive ingress and egress packets separately ``rx-dev`` and ``tx-dev``
91         should both be passed with the different file names or the Linux iface names.
92
93       * To receive ingress and egress packets together, ``rx-dev`` and ``tx-dev``
94         should both be passed with the same file name or the same Linux iface name.
95
96 ``ring-size``:
97 Size of the ring. This value is used internally for ring creation. The ring will be used to enqueue the packets from
98 the primary application to the secondary. This is an optional parameter with default size 16384.
99
100 ``mbuf-size``:
101 Size of the mbuf data. This is used internally for mempool creation. Ideally this value must be same as
102 the primary application's mempool's mbuf data size which is used for packet RX. This is an optional parameter with
103 default size 2176.
104
105 ``total-num-mbufs``:
106 Total number mbufs in mempool. This is used internally for mempool creation. This is an optional parameter with default
107 value 65535.
108
109
110 Example
111 -------
112
113 .. code-block:: console
114
115    $ sudo ./build/app/dpdk-pdump -- --pdump 'port=0,queue=*,rx-dev=/tmp/rx.pcap'