[spp] [PATCH 03/28] doc: add config_manual.md

ogawa.yasufumi at lab.ntt.co.jp ogawa.yasufumi at lab.ntt.co.jp
Tue Jan 23 01:28:48 CET 2018


From: Hiroyuki Nakamura <nakamura.hioryuki at po.ntt-tx.co.jp>

config_manual.md is a detailed manual for JSON config file.

Signed-off-by: Naoki Takada <takada.naoki at lab.ntt.co.jp>
---
 docs/spp_vf/config_manual.md | 214 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 214 insertions(+)
 create mode 100644 docs/spp_vf/config_manual.md

diff --git a/docs/spp_vf/config_manual.md b/docs/spp_vf/config_manual.md
new file mode 100644
index 0000000..370dfdb
--- /dev/null
+++ b/docs/spp_vf/config_manual.md
@@ -0,0 +1,214 @@
+# SPP_VF Config Manual
+
+## Forwarder Type
+
+There are three types of forwarder for 1:1, 1:N and N:1.
+
+  * forward: 1:1
+  * classifier_mac: 1:N (Destination is determined by MAC address)
+  * merge: N:1
+
+### Restrictions
+
+  * Different types of forwarder cannot assing on same core.
+  * Only one classifier_mac is allowed (Cannot use two or more).
+
+## Port Type
+
+There are three port types.
+
+  * nic: Physical NIC
+  * vhost: Vhost PMD for VMs
+  * ring: Ring PMD for spp components
+
+Each of ports is identified as resource ID with port type and resource ID.
+For example, resource ID of physical NIC of ID 0 is described as `nic0`.
+
+## Config Format
+
+Config files is described in JSON format.
+It consists of `vfs` and `classifier_table`.
+`vfs` defines each of spp_vf attributes and
+`classifier_table` defines MAC address and correnpond port for
+determining destination.
+
+### Attributes in Config
+
+  * vfs
+    * name: Name of spp_vf component.
+    * num_vhost: Number of vhosts spp_vf use.
+    * num_ring: Number of rings spp_vf use.
+    * functions: List of forwarders and its attributes (function means a forwarder).
+      * core: Core ID forwarder running on.
+      * type: Forwarder type (`forward`, `classifier_mac`, or `merger`).
+      * rx_port: Resource ID(s) of rx port.
+      * tx_port: Resource ID of tx port. If 1:N, which means the dest is `classifier_mac`,
+                 directly described as `classifier_mac_table`.
+
+  * classifier_table
+    * name: Table name for classifier_mac, It MUST be "classifier_mac_table" in current implementation
+    * table: Set of MAC address and port for destination
+      * mac: MAC address
+      * port: Resource ID of port
+
+## Sample Config
+
+Here is default config `spp.json` and network diagram of it.
+
+```json
+{
+  "vfs": [
+    {
+      "name": "vf0",
+      "num_vhost": 4,  // Number of vhosts
+      "num_ring": 9,   // Number of rings
+      "functions":[    // Attributes of forward,merge or classifier_mac
+        {
+          "core": 2,   // Core ID
+          "type": "merge",   // Forwarder type
+          "rx_port": ["nic0", "nic1"],  // Rx port, It MUST be a list for merge type
+          "tx_port": "ring8"            // Tx port
+        },
+        {
+          "core": 3,
+          "type": "classifier_mac",
+          "rx_port": "ring8",        // Rx port, It is not a list because type is classifier_mac
+          "tx_port_table": "classifier_mac_table"	// If type is classifier_mac, tx is classifier_mac_table
+        },
+
+        {
+          "core": 4,
+          "type": "forward",
+          "rx_port": "ring0",
+          "tx_port": "vhost0"
+        },
+        {
+          "core": 5,
+          "type": "forward",
+          "rx_port": "ring1",
+          "tx_port": "vhost2"
+        },
+        {
+          "core": 6,
+          "type": "forward",
+          "rx_port": "vhost0",
+          "tx_port": "ring2"
+        },
+        {
+          "core": 7,
+          "type": "forward",
+          "rx_port": "vhost2",
+          "tx_port": "ring3"
+        },
+        {
+          "core": 8,
+          "type": "merge",
+          "rx_port": ["ring2", "ring3"],
+          "tx_port": "nic0"
+        },
+
+        {
+          "core": 9,
+          "type": "forward",
+          "rx_port": "ring4",
+          "tx_port": "vhost1"
+        },
+        {
+          "core": 10,
+          "type": "forward",
+          "rx_port": "ring5",
+          "tx_port": "vhost3"
+        },
+        {
+          "core": 11,
+          "type": "forward",
+          "rx_port": "vhost1",
+          "tx_port": "ring6"
+        },
+        {
+          "core": 12,
+          "type": "forward",
+          "rx_port": "vhost3",
+          "tx_port": "ring7"
+        },
+        {
+          "core": 13,
+          "type": "merge",
+          "rx_port": ["ring6", "ring7"],
+          "tx_port": "nic1"
+        }
+      ]
+    }
+  ],
+  "classifier_table": {
+    "name":"classifier_mac_table",
+    "table": [
+      {
+        "mac":"52:54:00:12:34:56",
+        "port":"ring0"
+      },
+      {
+        "mac":"52:54:00:12:34:57",
+        "port":"ring4"
+      },
+      {
+        "mac":"52:54:00:12:34:58",
+        "port":"ring1"
+      },
+      {
+        "mac":"52:54:00:12:34:59",
+        "port":"ring5"
+      }
+    ]
+  }
+}
+```
+
+Network diagram
+[TODO] Replace it to more readable SVG img.
+
+```
++---------+  +-----------------------------------------------------------------------------------------------+
+|  host2  |  | Host1                                                                                         |
+|         |  |              +------------------------------------------------------+  +-------------------+  |
+|         |  |              | spp_vf                                               |  |                   |  |
+| +-----+ |  | +--------+   | +---+  +----+  +---+     +----+  +---+  +----------+ |  | +----------+      |  |
+| | nic <------>  nic0  +-----> M +--> r8 +--> C +-----> r0 +--> F +-->          +------>          |      |  |
+| +-----+ |  | +----+---+   | +-^-+  +----+  +-+-+     +----+  +---+  |          | |  | |          |      |  |
+|         |  |      ^       |   |              |                      |  vhost0  | |  | |    nic   |      |  |
+|         |  |      |       |   |              |       +----+  +---+  |          | |  | |          |      |  |
+|         |  |      |       |   |       +--------------+ r2 <--+ F <--+          <------+          |      |  |
+|         |  |      |       |   |       |      |       +----+  +---+  +----------+ |  | +----------+      |  |
+|         |  |      |       |   |       |      |                                   |  |             spp vm|  |
+|         |  |      |       |   |       |      |       +----+  +---+  +----------+ |  | +----------+      |  |
+|         |  |      |       |   |       |      +-------> r4 +--+ F +-->          +------>          |      |  |
+|         |  |      |       |   |    +--v--+   |       +----+  +---+  |          | |  | |          |      |  |
+|         |  |      +----------------+  M  |   |                      |  vhost1  | |  | |    nic   |      |  |
+|         |  |              |   |    +--^--+   |       +----+  +---+  |          | |  | |          |      |  |
+|         |  |              |   |       | +------------+ r6 +--+ F <--+          <------+          |      |  |
+|         |  |              |   |       | |    |       +----+  +---+  +----------+ |  | +----------+      |  |
+|         |  |              |   |       | |    |                                   |  |                   |  |
+|         |  |              |   |       | |    |                                   |  +-------------------+  |
+|         |  |              |   |       | |    |                                   |                         |
+|         |  |              |   |       | |    |                                   |  +-------------------+  |
+|         |  |              |   |       | |    |                                   |  |                   |  |
+| +-----+ |  | +--------+   |   |       | |    |       +----+  +---+  +----------+ |  | +----------+      |  |
+| | nic <------>  nic1  +-------+       | |    +-------> r1 +--+ F +-->          +------>          |      |  |
+| +-----+ |  | +----+---+   |           | |    |       +----+  +---+  |          | |  | |          |      |  |
+|         |  |      ^       |           | |    |                      |  vhost2  | |  | |    nic   |      |  |
+|         |  |      |       |           | |    |       +----+  +---+  |          | |  | |          |      |  |
+|         |  |      |       |           +--------------+ r3 +--+ F <--+          <------+          |      |  |
+|         |  |      |       |             |    |       +----+  +---+  +----------+ |  | +----------+      |  |
+|         |  |      |       |             |    |                                   |  |             spp vm|  |
+|         |  |      |       |             |    |       +----+  +---+  +----------+ |  | +----------+      |  |
+|         |  |      |       |             |    +-------> r5 +--+ F +-->          +------>          |      |  |
+|         |  |      |       |        +----v+           +----+  +---+  |          | |  | |          |      |  |
+|         |  |      +----------------+  M  |                          |  vhost3  | |  | |    nic   |      |  |
+|         |  |              |        +--^--+           +----+  +---+  |          | |  | |          |      |  |
+|         |  |              |           +--------------+ r7 +--+ F <--+          <------+          |      |  |
+|         |  |              |                          +----+  +---+  +----------+ |  | +----------+      |  |
+|         |  |              |                                                      |  |                   |  |
+|         |  |              +------------------------------------------------------+  +-------------------+  |
+|         |  |                                                                                               |
++---------+  +-----------------------------------------------------------------------------------------------+
+```
-- 
2.13.1



More information about the spp mailing list