aboutsummaryrefslogtreecommitdiffstats
path: root/mcp/patches/salt-formula-linux/0002-network-Bring-in-basic-VPP-support.patch
blob: 5166be56a32b389e43ca9cae6225f964b6205fa2 (plain)
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
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
: Copyright (c) 2019 Mirantis Inc., Enea AB and others.
:
: All rights reserved. This program and the accompanying materials
: are made available under the terms of the Apache License, Version 2.0
: which accompanies this distribution, and is available at
: http://www.apache.org/licenses/LICENSE-2.0
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
From: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Date: Mon, 10 Dec 2018 16:16:26 +0100
Subject: [PATCH] network: Bring in basic VPP support

For now, we only care about DPDK-backed VPP ports.

TODO:
- README.rst: VPP port usage

Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
---
 linux/files/vpp_commands.txt |  4 +++
 linux/files/vpp_startup.conf | 47 ++++++++++++++++++++++++++++++++++++
 linux/network/dpdk.sls       | 38 +++++++++++++++++++++++++++++
 3 files changed, 89 insertions(+)
 create mode 100644 linux/files/vpp_commands.txt
 create mode 100644 linux/files/vpp_startup.conf

diff --git a/linux/files/vpp_commands.txt b/linux/files/vpp_commands.txt
new file mode 100644
index 0000000..2ce4726
--- /dev/null
+++ b/linux/files/vpp_commands.txt
@@ -0,0 +1,4 @@
+{%- from "linux/map.jinja" import network with context %}
+{%- if network.vpp.commands is defined %}
+{{ network.vpp.commands }}
+{%- endif %}
diff --git a/linux/files/vpp_startup.conf b/linux/files/vpp_startup.conf
new file mode 100644
index 0000000..fcfc1fd
--- /dev/null
+++ b/linux/files/vpp_startup.conf
@@ -0,0 +1,47 @@
+{%- from "linux/map.jinja" import network with context %}
+unix {
+  cli-listen /run/vpp/cli.sock
+  log /var/log/vpp.log
+  full-coredump
+  nodaemon
+  startup-config /etc/vpp/commands.txt
+{%- if network.vpp.gid is defined %}
+  gid {{ network.vpp.gid }}
+{%- endif %}
+}
+api-trace {
+  on
+}
+{%- if network.vpp.gid is defined %}
+api-segment {
+  gid {{ network.vpp.gid }}
+}
+{%- endif %}
+cpu {
+{%- if network.vpp.main_core is defined %}
+  main-core {{ network.vpp.main_core }}
+{%- endif %}
+{%- if network.vpp.corelist_workers is defined %}
+  corelist-workers {{ network.vpp.corelist_workers }}
+{%- endif %}
+{%- if network.vpp.skip_core is defined %}
+  skip-core {{ network.vpp.skip_core }}
+{%- endif %}
+{%- if network.vpp.workers is defined %}
+  workers {{ network.vpp.workers }}
+{%- endif %}
+}
+dpdk {
+{%- if network.vpp.decimal_interface_names is defined %}
+  decimal-interface-names
+{%- endif %}
+{%- if network.vpp.dpdk_socket_mem is defined %}
+  socket-mem {{ network.vpp.dpdk_socket_mem }}
+{%- endif %}
+  ## Whitelist specific interface by specifying PCI address
+{%- for interface_name, interface in network.interface.items() %}
+{%- if 'dpdk_vpp_port' in interface.type and interface.pci is defined %}
+  dev {{ interface.pci }}
+{%- endif %}
+{%- endfor %}
+}
diff --git a/linux/network/dpdk.sls b/linux/network/dpdk.sls
index 786f7c8..09453c6 100644
--- a/linux/network/dpdk.sls
+++ b/linux/network/dpdk.sls
@@ -32,6 +32,45 @@ linux_network_dpdk_service:
   - watch:
     - file: /etc/dpdk/interfaces

+{%- if network.vpp is defined %}
+
+vpp_pkgs:
+  pkg.installed:
+  - pkgs:
+    - vpp
+    - vpp-plugin-core
+    - vpp-plugin-dpdk
+    - bridge-utils
+
+/etc/vpp/commands.txt:
+  file.managed:
+    - source: salt://linux/files/vpp_commands.txt
+    - template: jinja
+    - require:
+      - pkg: vpp_pkgs
+
+/etc/vpp/startup.conf:
+  file.managed:
+    - source: salt://linux/files/vpp_startup.conf
+    - template: jinja
+    - require:
+      - pkg: vpp_pkgs
+
+/etc/sysctl.d/80-vpp.conf:
+  file.managed:
+    - contents:
+      - '# Disabled by salt-formula-linux'
+
+linux_network_vpp_service:
+  service.running:
+  - enable: true
+  - name: vpp
+  - watch:
+    - file: /etc/vpp/startup.conf
+    - file: /etc/vpp/commands.txt
+
+{%- endif %}
+
 {%- if network.openvswitch is defined %}

 openvswitch_dpdk_pkgs: