]> git.proxmox.com Git - ovs.git/blame - INSTALL.Windows.md
INSTALL.Windows: Correct invalid paths.
[ovs.git] / INSTALL.Windows.md
CommitLineData
542cc9bb
TG
1How to Build the Kernel module & userspace daemons for Windows
2==============================================================
c803536e
SS
3
4Autoconf, Automake and Visual C++:
5---------------------------------
6Open vSwitch on Linux uses autoconf and automake for generating Makefiles.
7It will be useful to maintain the same build system while compiling on Windows
8too. One approach is to compile Open vSwitch in a MinGW environment that
9contains autoconf and automake utilities and then use Visual C++ as a compiler
10and linker.
11
12The following explains the steps in some detail.
13
14* Install Mingw on a Windows machine by following the instructions at:
15http://www.mingw.org/wiki/Getting_Started
16
17This should install mingw at C:\Mingw and msys at C:\Mingw\msys.
18Add "C:\MinGW\bin" and "C:\Mingw\msys\1.0\bin" to PATH environment variable
19of Windows.
20
21You can either use the MinGW installer or the command line utility 'mingw-get'
22to install both the base packages and additional packages like automake and
23autoconf(version 2.68).
24
25Also make sure that /mingw mount point exists. If its not, please add/create
26the following entry in /etc/fstab - 'C:/MinGW /mingw'.
27
28* Install the latest Python 2.x from python.org and verify that its path is
29part of Windows' PATH environment variable.
30
31* You will need at least Visual Studio 2013 to compile userspace binaries. In
32addition to that, if you want to compile the kernel module you will also need to
33install Windows Driver Kit (WDK) 8.1 Update.
34
35It is important to get the Visual Studio related environment variables and to
36have the $PATH inside the bash to point to the proper compiler and linker. One
37easy way to achieve this is to get into the "Developer Command prompt for visual
38b01df6
GS
38studio" and through it enter into the bash shell available from msys by typing
39'bash --login'.
c803536e
SS
40
41If after the above step, a 'which link' inside MSYS's bash says,
42"/bin/link.exe", rename /bin/link.exe to something else so that the
38b01df6
GS
43Visual studio's linker is used. You should also see a 'which sort' report
44"/bin/sort.exe".
c803536e
SS
45
46* For pthread support, install the library, dll and includes of pthreads-win32
47project from
48ftp://sourceware.org/pub/pthreads-win32/prebuilt-dll-2-9-1-release to a
d0d808fd
GS
49directory (e.g.: C:/pthread). You should add the pthread-win32's dll
50path (e.g.: C:\pthread\dll\x86) to the Windows' PATH environment variable.
c803536e
SS
51
52* Get the Open vSwitch sources from either cloning the repo using git
53or from a distribution tar ball.
54
55* If you pulled the sources directly from an Open vSwitch Git tree,
56 run boot.sh in the top source directory:
57
542cc9bb 58 % ./boot.sh
c803536e
SS
59
60* In the top source directory, configure the package by running the
61 configure script. You should provide some configure options to choose
62 the right compiler, linker, libraries, Open vSwitch component installation
63 directories, etc. For example,
64
542cc9bb
TG
65 % ./configure CC=./build-aux/cccl LD="`which link`" LIBS="-lws2_32" \
66 --prefix="C:/openvswitch/usr" --localstatedir="C:/openvswitch/var" \
67 --sysconfdir="C:/openvswitch/etc" --with-pthread="C:/pthread"
c803536e 68
b0e1bce5
GS
69 By default, the above enables compiler optimization for fast code.
70 For default compiler optimization, pass the "--with-debug" configure
71 option.
72
c803536e
SS
73* Run make for the ported executables in the top source directory, e.g.:
74
542cc9bb 75 % make
d9d8dbc8 76
d0d808fd
GS
77 For faster compilation, you can pass the '-j' argument to make. For
78 example, to run 4 jobs simultaneously, run 'make -j4'.
79
80 Note: MSYS 1.0.18 has a bug that causes parallel make to hang. You
81 can overcome this by downgrading to MSYS 1.0.17. A simple way to
82 downgrade is to exit all MinGW sessions and then run the command
83 'mingw-get upgrade msys-core-bin=1.0.17-1' from MSVC developers command
84 prompt.
85
86* To run all the unit tests in Open vSwitch, one at a time:
d9d8dbc8 87
542cc9bb 88 % make check
c803536e 89
d0d808fd
GS
90 To run all the unit tests in Open vSwitch, up to 8 in parallel:
91
92 % make check TESTSUITEFLAGS="-j8"
93
94* To install all the compiled executables on the local machine, run:
95
96 % make install
97
98 The above command will install the Open vSwitch executables in
99 C:/openvswitch. You can add 'C:\openvswitch\usr\bin' and
100 'C:\openvswitch\usr\sbin' to Windows' PATH environment variable
101 for easy access.
102
c803536e
SS
103OpenSSL, Open vSwitch and Visual C++
104------------------------------------
105To get SSL support for Open vSwitch on Windows, do the following:
106
107* Install OpenSSL for Windows as suggested at
108http://www.openssl.org/related/binaries.html.
109The link as of this writing suggests to download it from
bb996e5b 110http://slproweb.com/products/Win32OpenSSL.html
c803536e
SS
111
112Note down the directory where OpenSSL is installed (e.g.: C:/OpenSSL-Win32).
113
114* While configuring the package, specify the OpenSSL directory path.
115For example,
116
542cc9bb
TG
117 % ./configure CC=./build-aux/cccl LD="`which link`" LIBS="-lws2_32" \
118 --prefix="C:/openvswitch/usr" --localstatedir="C:/openvswitch/var" \
119 --sysconfdir="C:/openvswitch/etc" --with-pthread="C:/pthread" \
120 --enable-ssl --with-openssl="C:/OpenSSL-Win32"
c803536e
SS
121
122* Run make for the ported executables.
123
978ce0e9
NR
124Building the Kernel datapath module
125-----------------------------------
126* We directly use the Visual Studio 2013 IDE to compile the kernel datapath.
127You can open the extensions.sln file in the IDE and build the solution.
128
129* The kernel datapath can be compiled from command line as well. The top
130level 'make' will invoke building the kernel datapath, if the
131'--with-vstudioddk' argument is specified while configuring the package.
132For example,
133
134 % ./configure CC=./build-aux/cccl LD="`which link`" LIBS="-lws2_32" \
135 --prefix="C:/openvswitch/usr" --localstatedir="C:/openvswitch/var" \
136 --sysconfdir="C:/openvswitch/etc" --with-pthread="C:/pthread" \
137 --enable-ssl --with-openssl="C:/OpenSSL-Win32" \
138 --with-vstudioddk="<WDK to use>"
139
140 Possible values for "<WDK to use>" are:
141 "Win8.1 Debug", "Win8.1 Release", "Win8 Debug" and "Win8 Release".
c803536e
SS
142
143Installing the Kernel module
144----------------------------
145Once you have built the solution, you can copy the following files to the
978ce0e9 146target Hyper-V machines.
c803536e
SS
147
148 ./datapath-windows/x64/Win8.1Debug/package/ovsext.inf
149 ./datapath-windows/x64/Win8.1Debug/package/OVSExt.sys
150 ./datapath-windows/x64/Win8.1Debug/package/ovsext.cat
151 ./datapath-windows/misc/install.cmd
152 ./datapath-windows/misc/uninstall.cmd
153
978ce0e9
NR
154The above path assumes that the kernel module has been built using Windows
155DDK 8.1 in Debug mode. Change the path appropriately, if a different WDK
156has been used.
157
c803536e
SS
158Steps to install the module
159---------------------------
160
16101> Run ./uninstall.cmd to remove the old extension.
0a46bca7
NR
162
16302> Run ./install.cmd to insert the new one. For this to work you will have to
c803536e
SS
164turn on TESTSIGNING boot option or 'Disable Driver Signature Enforcement'
165during boot.
0a46bca7
NR
166
16703> In the Virtual Switch Manager configuration you can enable the Open vSwitch
168Extension on an existing switch or create a new switch. If you are using an
169existing switch, make sure to enable the "Allow Management OS" option for VXLAN
170to work (covered later).
171
172The command to create a new switch named 'OVS-Extended-Switch' using a physical
173NIC named 'Ethernet 1' is:
174 % New-VMSwitch "OVS-Extended-Switch" -AllowManagementOS $true \
175 -NetAdapterName "Ethernet 1"
176
177Note: you can obtain the list of physical NICs on the host using
178'Get-NetAdapter' command.
179
18004> In the properties of any switch, you should should now see "Open
181vSwitch Extension" under 'Extensions'. Click the check box to enable the
182extension. An alternative way to do the same is to run the following command:
183 % Enable-VMSwitchExtension "Open vSwitch Extension" OVS-Extended-Switch
184
185Note: If you enabled the extension using the command line, a delay of a few
186seconds has been observed for the change to be reflected in the UI. This is
187not a bug in Open vSwitch.
188
189Steps to run the user processes & configure ports
190-------------------------------------------------
d0d808fd
GS
191The following steps assume that you have installed the Open vSwitch
192utilities in the local machine via 'make install'.
193
19401> Create the database.
195 % ovsdb-tool create C:\openvswitch\etc\openvswitch\conf.db \
196 C:\openvswitch\usr\share\openvswitch\vswitch.ovsschema
197
19802> Start the ovsdb-server and initialize the database.
199 % ovsdb-server -vfile:info --remote=punix:db.sock --log-file --pidfile \
200 --detach
201 % ovs-vsctl --no-wait init
202
203 If you would like to terminate the started ovsdb-server, run:
204 % ovs-appctl -t ovsdb-server exit
205
206 (Note that the logfile is created at C:/openvswitch/var/log/openvswitch/)
0a46bca7 207
d0d808fd
GS
20803> Start ovs-vswitchd.
209 % ovs-vswitchd -vfile:info --log-file --pidfile --detach
0a46bca7 210
d0d808fd
GS
211 If you would like to terminate the started ovs-vswitchd, run:
212 % ovs-appctl exit
0a46bca7 213
d0d808fd 214 (Note that the logfile is created at C:/openvswitch/var/log/openvswitch/)
0a46bca7
NR
215
21604> Create integration bridge & pif bridge
d0d808fd
GS
217 % ovs-vsctl add-br br-int
218 % ovs-vsctl add-br br-pif
0a46bca7 219
d0d808fd
GS
220NOTE: There's a known bug that running the ovs-vsctl command does not
221terminate. This is generally solved by having ovs-vswitchd running. If
222you face the issue despite that, hit Ctrl-C to terminate ovs-vsctl and
0a46bca7
NR
223check the output to see if your command succeeded.
224
d0d808fd
GS
225NOTE: There's a known bug that the ports added to OVSDB via ovs-vsctl don't
226get to the kernel datapath immediately, ie. they don't show up in the output of
227"ovs-dpctl show" even though they show up in output of "ovs-vsctl show".
228In order to workaround this issue, restart ovs-vswitchd. (You can terminate
229ovs-vswitchd by running 'ovs-appctl exit'.)
0a46bca7
NR
230
23105> Dump the ports in the kernel datapath
d0d808fd 232 % ovs-dpctl show
0a46bca7
NR
233
234* Sample output is as follows:
235
d0d808fd 236 % ovs-dpctl show
0a46bca7
NR
237 system@ovs-system:
238 lookups: hit:0 missed:0 lost:0
239 flows: 0
240 port 2: br-pif (internal) <<< internal port on 'br-pif' bridge
241 port 1: br-int (internal) <<< internal port on 'br-int' bridge
242
24306> Dump the ports in the OVSDB
d0d808fd 244 % ovs-vsctl show
0a46bca7
NR
245
246* Sample output is as follows:
d0d808fd 247 % ovs-vsctl show
0a46bca7
NR
248 a56ec7b5-5b1f-49ec-a795-79f6eb63228b
249 Bridge br-pif
250 Port br-pif
251 Interface br-pif
252 type: internal
253 Bridge br-int
254 Port br-int
255 Interface br-int
256 type: internal
257
25807> Add the physical NIC and the internal port to br-pif.
259
260In OVS for Hyper-V, we use 'external' as a special name to refer to the
261physical NICs connected to the Hyper-V switch. An index is added to this
262special name to refer to the particular physical NIC. Eg. 'external.1' refers
263to the first physical NIC on the Hyper-V switch.
264
265Note: Currently, we assume that the Hyper-V switch on which OVS extension is
266enabled has a single physical NIC connected to it.
267
268Interal port is the virtual adapter created on the Hyper-V switch using the
269'AllowManagementOS' setting. This has already been setup while creating the
270switch using the instructions above. In OVS for Hyper-V, we use a 'internal'
271as a special name to refer to that adapter.
272
d0d808fd
GS
273 % ovs-vsctl add-port br-pif external.1
274 % ovs-vsctl add-port br-pif internal
0a46bca7
NR
275
276* Dumping the ports should show the additional ports that were just added.
277 Sample output shows up as follows:
278
d0d808fd 279 % ovs-dpctl show
0a46bca7
NR
280 system@ovs-system:
281 lookups: hit:0 missed:0 lost:0
282 flows: 0
283 port 4: internal (internal) <<< 'AllowManagementOS' adapter on
284 Hyper-V switch
285 port 2: br-pif (internal)
286 port 1: br-int (internal
287 port 3: external.1 <<< Physical NIC
288
d0d808fd 289 % ovs-vsctl show
0a46bca7
NR
290 a56ec7b5-5b1f-49ec-a795-79f6eb63228b
291 Bridge br-pif
292 Port internal
293 Interface internal
294 Port br-pif
295 Interface br-pif
296 type: internal
297 Bridge br-int
298 Port "external.1"
299 Interface "external.1"
300 Port br-int
301 Interface br-int
302 type: internal
303
30408> Add the VIFs to br-int
305
306Adding VIFs to openvswitch is a two step procedure. The first step is to
307assign a 'OVS port name' which is a unique name across all VIFs on this
308Hyper-V. The next step is to add the VIF to the ovsdb using its 'OVS port
309name' as key.
310
31108a> Assign a unique 'OVS port name' to the VIF
312
313Note that the VIF needs to have been disconnected from the Hyper-V switch
314before assigning a 'OVS port name' to it. In the example below, we assign a
315'OVS port name' called 'ovs-port-a' to a VIF on a VM by name 'VM1'. By using
316index 0 for '$vnic', the first VIF of the VM is being addressed. After
317assigning the name 'ovs-port-a', the VIF is connected back to the Hyper-V
318switch with name 'OVS-HV-Switch', which is assumed to be the Hyper-V switch
319with OVS extension enabled.
320
321 Eg:
322 % import-module .\datapath-windows\misc\OVS.psm1
323 % $vnic = Get-VMNetworkAdapter <Name of the VM>
324 % Disconnect-VMNetworkAdapter -VMNetworkAdapter $vnic[0]
325 % $vnic[0] | Set-VMNetworkAdapterOVSPort -OVSPortName ovs-port-a
326 % Connect-VMNetworkAdapter -VMNetworkAdapter $vnic[0] \
327 -SwitchName OVS-Extended-Switch
328
32908b> Add the VIFs to br-int in ovsdb
330
331 Eg:
d0d808fd 332 % ovs-vsctl add-port br-int ovs-port-a
0a46bca7
NR
333
33409> Verify the status
d0d808fd 335 % ovs-dpctl show
0a46bca7
NR
336 system@ovs-system:
337 lookups: hit:0 missed:0 lost:0
338 flows: 0
339 port 4: internal (internal)
340 port 5: ovs-port-a
341 port 2: br-pif (internal)
342 port 1: br-int (internal
343 port 3: external.1
344
d0d808fd 345 % ovs-vsctl show
0a46bca7
NR
346 4cd86499-74df-48bd-a64d-8d115b12a9f2
347 Bridge br-pif
348 Port internal
349 Interface internal
350 Port "external.1"
351 Interface "external.1"
352 Port br-pif
353 Interface br-pif
354 type: internal
355 Bridge br-int
356 Port br-int
357 Interface br-int
358 type: internal
359 Port "ovs-port-a"
360 Interface "ovs-port-a"
361
362Steps to configure patch ports and switch VLAN tagging
363------------------------------------------------------
364The Windows Open vSwitch implementation support VLAN tagging in the switch.
365Switch VLAN tagging along with patch ports between 'br-int' and 'br-pif' is
366used to configure VLAN tagging functionality between two VMs on different
367Hyper-Vs. The following examples demonstrate how it can be done:
368
36901> Add a patch port from br-int to br-pif
d0d808fd
GS
370 % ovs-vsctl add-port br-int patch-to-pif
371 % ovs-vsctl set interface patch-to-pif type=patch \
0a46bca7
NR
372 options:peer=patch-to-int
373
37402> Add a patch port from br-pif to br-int
d0d808fd
GS
375 % ovs-vsctl add-port br-pif patch-to-int
376 % ovs-vsctl set interface patch-to-int type=patch \
0a46bca7
NR
377 options:peer=patch-to-pif
378
37903> Re-Add the VIF ports with the VLAN tag
d0d808fd
GS
380 % ovs-vsctl add-port br-int ovs-port-a tag=900
381 % ovs-vsctl add-port br-int ovs-port-b tag=900
0a46bca7
NR
382
383Steps to add VXLAN tunnels
384--------------------------
385The Windows Open vSwitch implementation support VXLAN tunnels. To add VXLAN
386tunnels, the following steps serve as examples.
387
388Note that, any patch ports created between br-int and br-pif MUST be beleted
389prior to adding VXLAN tunnels.
390
39101> Add the vxlan port between 172.168.201.101 <-> 172.168.201.102
d0d808fd
GS
392 % ovs-vsctl add-port br-int vxlan-1
393 % ovs-vsctl set Interface vxlan-1 type=vxlan
394 % ovs-vsctl set Interface vxlan-1 options:local_ip=172.168.201.101
395 % ovs-vsctl set Interface vxlan-1 options:remote_ip=172.168.201.102
396 % ovs-vsctl set Interface vxlan-1 options:in_key=flow
397 % ovs-vsctl set Interface vxlan-1 options:out_key=flow
0a46bca7
NR
398
39902> Add the vxlan port between 172.168.201.101 <-> 172.168.201.105
d0d808fd
GS
400 % ovs-vsctl add-port br-int vxlan-2
401 % ovs-vsctl set Interface vxlan-2 type=vxlan
402 % ovs-vsctl set Interface vxlan-2 options:local_ip=172.168.201.102
403 % ovs-vsctl set Interface vxlan-2 options:remote_ip=172.168.201.105
404 % ovs-vsctl set Interface vxlan-2 options:in_key=flow
405 % ovs-vsctl set Interface vxlan-2 options:out_key=flow
d9d8dbc8
NR
406
407
c803536e
SS
408Requirements
409------------
c803536e
SS
410* We require that you don't disable the "Allow management operating system to
411share this network adapter" under 'Virtual Switch Properties' > 'Connection
412type: External network', in the HyperV virtual network switch configuration.
413
414* Checksum Offloads
415 While there is some support for checksum/segmentation offloads in software,
416this is still a work in progress. Till the support is complete we recommend
417disabling TX/RX offloads for both the VM's as well as the HyperV.
418
0be55e38
GS
419Windows Services
420----------------
421Open vSwitch daemons come with support to run as a Windows service. The
422instructions here assume that you have installed the Open vSwitch utilities
423and daemons via 'make install'. The commands shown here can be run from
424MSYS bash or Windows command prompt.
425
426* Create the database.
427
428 % ovsdb-tool create C:/openvswitch/etc/openvswitch/conf.db \
429 "C:/openvswitch/usr/share/openvswitch/vswitch.ovsschema"
430
431* Create the ovsdb-server service and start it.
432
aeef025a 433 % sc create ovsdb-server binpath="C:/openvswitch/usr/sbin/ovsdb-server.exe C:/openvswitch/etc/openvswitch/conf.db -vfile:info --log-file --pidfile --remote=punix:db.sock --service --service-monitor"
0be55e38
GS
434
435 One of the common issues with creating a Windows service is with mungled
436 paths. You can make sure that the correct path has been registered with
437 the Windows services manager by running:
438
439 % sc qc ovsdb-server
440
441 Start the service.
442
443 % sc start ovsdb-server
444
445 Check that the service is healthy by running:
446
447 % sc query ovsdb-server
448
449* Initialize the database.
450
451 % ovs-vsctl --no-wait init
452
453* Create the ovs-vswitchd service and start it.
454
aeef025a 455 % sc create ovs-vswitchd binpath="C:/openvswitch/usr/sbin/ovs-vswitchd.exe --pidfile -vfile:info --log-file --service --service-monitor"
0be55e38
GS
456
457 % sc start ovs-vswitchd
458
459 Check that the service is healthy by running:
460
461 % sc query ovs-vswitchd
462
463* To stop and delete the services, run:
464
465 % sc stop ovs-vswitchd
466 % sc stop ovsdb-server
467 % sc delete ovs-vswitchd
468 % sc delete ovsdb-server
469
d8a24927
GS
470Windows autobuild service
471-------------------------
d8a24927
GS
472AppVeyor (appveyor.com) provides a free Windows autobuild service for
473opensource projects. Open vSwitch has integration with AppVeyor for
474continuous build. A developer can build test his changes for Windows by
475logging into appveyor.com using a github account, creating a new project
476by linking it to his development repository in github and triggering
477a new build.
c803536e 478
d9d8dbc8 479TODO
c803536e
SS
480----
481
c803536e
SS
482* Investigate the working of sFlow on Windows and re-enable the unit tests.
483
abe6d620
GS
484* Investigate and add the feature to provide QOS.
485
c803536e
SS
486* Sign the driver & create an MSI for installing the different OpenvSwitch
487components on windows.