summaryrefslogtreecommitdiff
path: root/Documentation/faq/design.rst
blob: efb62a2f7d0cbb325dbb5d99a51f72ff614a50b3 (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
140
141
142
143
144
145
..
      Licensed under the Apache License, Version 2.0 (the "License"); you may
      not use this file except in compliance with the License. You may obtain
      a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
      WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
      License for the specific language governing permissions and limitations
      under the License.

      Convention for heading levels in Open vSwitch documentation:

      =======  Heading 0 (reserved for the title in a document)
      -------  Heading 1
      ~~~~~~~  Heading 2
      +++++++  Heading 3
      '''''''  Heading 4

      Avoid deeper levels because they do not render well.

======================
Implementation Details
======================

Q: I hear OVS has a couple of kinds of flows.  Can you tell me about them?

    A: Open vSwitch uses different kinds of flows for different purposes:

    - OpenFlow flows are the most important kind of flow.  OpenFlow controllers
      use these flows to define a switch's policy.  OpenFlow flows support
      wildcards, priorities, and multiple tables.

      When in-band control is in use, Open vSwitch sets up a few "hidden"
      flows, with priority higher than a controller or the user can configure,
      that are not visible via OpenFlow.  (See the "Controller" section of the
      FAQ for more information about hidden flows.)

    - The Open vSwitch software switch implementation uses a second kind of
      flow internally.  These flows, called "datapath" or "kernel" flows, do
      not support priorities and comprise only a single table, which makes them
      suitable for caching.  (Like OpenFlow flows, datapath flows do support
      wildcarding, in Open vSwitch 1.11 and later.)  OpenFlow flows and
      datapath flows also support different actions and number ports
      differently.

      Datapath flows are an implementation detail that is subject to change in
      future versions of Open vSwitch.  Even with the current version of Open
      vSwitch, hardware switch implementations do not necessarily use this
      architecture.

Users and controllers directly control only the OpenFlow flow table.  Open
vSwitch manages the datapath flow table itself, so users should not normally be
concerned with it.

Q: Why are there so many different ways to dump flows?

    A: Open vSwitch has two kinds of flows (see the previous question), so it
    has commands with different purposes for dumping each kind of flow:

    - ``ovs-ofctl dump-flows <br>`` dumps OpenFlow flows, excluding hidden
      flows.  This is the most commonly useful form of flow dump.  (Unlike the
      other commands, this should work with any OpenFlow switch, not just Open
      vSwitch.)

    - ``ovs-appctl bridge/dump-flows <br>`` dumps OpenFlow flows, including
      hidden flows.  This is occasionally useful for troubleshooting suspected
      issues with in-band control.

    - ``ovs-dpctl dump-flows [dp]`` dumps the datapath flow table entries for a
      Linux kernel-based datapath.  In Open vSwitch 1.10 and later,
      ovs-vswitchd merges multiple switches into a single datapath, so it will
      show all the flows on all your kernel-based switches.  This command can
      occasionally be useful for debugging.  It doesn't dump flows that was
      offloaded to hardware.

    - ``ovs-appctl dpif/dump-flows <br>``, new in Open vSwitch 1.10, dumps
      datapath flows for only the specified bridge, regardless of the type.
      Supports dumping of HW offloaded flows.  See ovs-vswitchd(8) for
      details.

Q: How does multicast snooping works with VLANs?

    A: Open vSwitch maintains snooping tables for each VLAN.

Q: Can OVS populate the kernel flow table in advance instead of in reaction to
packets?

    A: No.  There are several reasons:

    - Kernel flows are not as sophisticated as OpenFlow flows, which means that
      some OpenFlow policies could require a large number of kernel flows.  The
      "conjunctive match" feature is an extreme example: the number of kernel
      flows it requires is the product of the number of flows in each
      dimension.

    - With multiple OpenFlow flow tables and simple sets of actions, the number
      of kernel flows required can be as large as the product of the number of
      flows in each dimension.  With more sophisticated actions, the number of
      kernel flows could be even larger.

    - Open vSwitch is designed so that any version of OVS userspace
      interoperates with any version of the OVS kernel module.  This forward
      and backward compatibility requires that userspace observe how the kernel
      module parses received packets.  This is only possible in a
      straightforward way when userspace adds kernel flows in reaction to
      received packets.

    For more relevant information on the architecture of Open vSwitch, please
    read "The Design and Implementation of Open vSwitch", published in USENIX
    NSDI 2015.

Q: How many packets does OVS buffer?

    A: Open vSwitch fast path packet processing uses a "run to completion"
    model in which every packet is completely handled in a single pass.
    Therefore, in the common case where a packet just passes through the fast
    path, Open vSwitch does not buffer packets itself.  The operating system
    and the network drivers involved in receiving and later in transmitting the
    packet do often include buffering.  Open vSwitch is only a middleman
    between these and does not have direct access or influence over their
    buffers.

    Outside the common case, Open vSwitch does sometimes buffer packets.  When
    the OVS fast path processes a packet that does not match any of the flows
    in its megaflow cache, it passes that packet to the Open vSwitch slow path.
    This procedure queues a copy of the packet to the Open vSwitch userspace
    which processes it and, if necessary, passes it back to the kernel module.
    Queuing the packet to userspace as part of this process involves buffering.
    (Going the opposite direction does not, because the kernel actually
    processes the request synchronously.)  A few other exceptional cases also
    queue packets to userspace for processing; most of these are due to
    OpenFlow actions that the fast path cannot handle and that must therefore
    be handled by the slow path instead.

    OpenFlow also has a concept of packet buffering.  When an OpenFlow switch
    sends a packet to a controller, it may opt to retain a copy of the packet
    in an OpenFlow "packet buffer".  Later, if the controller wants to tell the
    switch to forward a copy of that packet, it can refer to the packet through
    its assigned buffer, instead of sending the whole packet back to the
    switch, thereby saving bandwidth in the OpenFlow control channel.  Before
    Open vSwitch 2.7, OVS implemented such buffering; Open vSwitch 2.7 and
    later do not.