ovn-northd: Port security allows receiving packets to multicast/broadcast.
[cascardo/ovs.git] / ovn / ovn-nb.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <database name="ovn-nb" title="OVN Northbound Database">
3   <p>
4     This database is the interface between OVN and the cloud management system
5     (CMS), such as OpenStack, running above it.  The CMS produces almost all of
6     the contents of the database.  The <code>ovn-northd</code> program
7     monitors the database contents, transforms it, and stores it into the <ref
8     db="OVN_Southbound"/> database.
9   </p>
10
11   <p>
12     We generally speak of ``the'' CMS, but one can imagine scenarios in
13     which multiple CMSes manage different parts of an OVN deployment.
14   </p>
15
16   <h2>External IDs</h2>
17
18   <p>
19     Each of the tables in this database contains a special column, named
20     <code>external_ids</code>.  This column has the same form and purpose each
21     place it appears.
22   </p>
23
24   <dl>
25     <dt><code>external_ids</code>: map of string-string pairs</dt>
26     <dd>
27       Key-value pairs for use by the CMS.  The CMS might use certain pairs, for
28       example, to identify entities in its own configuration that correspond to
29       those in this database.
30     </dd>
31   </dl>
32
33   <table name="Logical_Switch" title="L2 logical switch">
34     <p>
35       Each row represents one L2 logical switch.  A given switch's ports are
36       the <ref table="Logical_Port"/> rows whose <ref table="Logical_Port"
37       column="lswitch"/> column points to its row.
38     </p>
39
40     <column name="name">
41       <p>
42         A name for the logical switch.  This name has no special meaning or purpose
43         other than to provide convenience for human interaction with the ovn-nb
44         database.  There is no requirement for the name to be unique.  The
45         logical switch's UUID should be used as the unique identifier.
46       </p>
47     </column>
48
49     <column name="router_port">
50       <p>
51         The router port to which this logical switch is connected, or empty if
52         this logical switch is not connected to any router.  A switch may be
53         connected to at most one logical router, but this is not a significant
54         restriction because logical routers may be connected into arbitrary
55         topologies.
56       </p>
57     </column>
58
59     <group title="Common Columns">
60       <column name="external_ids">
61         See <em>External IDs</em> at the beginning of this document.
62       </column>
63     </group>
64   </table>
65
66   <table name="Logical_Port" title="L2 logical switch port">
67     <p>
68       A port within an L2 logical switch.
69     </p>
70
71     <column name="lswitch">
72       The logical switch to which the logical port is connected.
73     </column>
74
75     <column name="name">
76       <p>
77       The logical port name.
78       </p>
79
80       <p>
81       For entities (VMs or containers) that are spawned in the hypervisor,
82       the name used here must match those used in the <ref key="iface-id"
83       table="Interface" column="external_ids" db="Open_vSwitch"/> in the
84       <ref db="Open_vSwitch"/> database's <ref table="Interface"
85       db="Open_vSwitch"/> table, because hypervisors use <ref key="iface-id"
86       table="Interface" column="external_ids" db="Open_vSwitch"/> as a lookup
87       key to identify the network interface of that entity.
88       </p>
89
90       <p>
91       For containers that are spawned inside a VM, the name can be
92       any unique identifier.  In such a case, <ref column="parent_name"/>
93       must be populated.
94       </p>
95     </column>
96
97     <column name="parent_name">
98       When <ref column="name"/> identifies the interface of a container
99       spawned inside a tenant VM, this column represents the VM interface
100       through which the container interface sends its network traffic.
101       The name used here must match those used in the <ref key="iface-id"
102       table="Interface" column="external_ids" db="Open_vSwitch"/> in the
103       <ref db="Open_vSwitch"/> table, because hypervisors in this case use
104       <ref key="iface-id" table="Interface" column="external_ids"
105       db="Open_vSwitch"/> as a lookup key to identify the network interface
106       of the tenant VM.
107     </column>
108
109     <column name="tag">
110       When <ref column="name"/> identifies the interface of a container
111       spawned inside a tenant VM, this column identifies the VLAN tag in
112       the network traffic associated with that container's network interface.
113       When there are multiple container interfaces inside a VM, all of
114       them send their network traffic through a single VM network interface and
115       this value helps OVN identify the correct container interface.
116     </column>
117
118     <column name="up">
119       This column is populated by <code>ovn-northd</code>, rather than by
120       the CMS plugin as is most of this database.  When a logical port is bound
121       to a physical location in the OVN Southbound database <ref
122       db="OVN_Southbound" table="Bindings"/> table, <code>ovn-northd</code>
123       sets this column to <code>true</code>; otherwise, or if the port
124       becomes unbound later, it sets it to <code>false</code>.  This
125       allows the CMS to wait for a VM's (or container's) networking to
126       become active before it allows the VM (or container) to start.
127     </column>
128
129     <column name="macs">
130       The logical port's own Ethernet address or addresses, each in the form
131       <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>.
132       Like a physical Ethernet NIC, a logical port ordinarily has a single
133       fixed Ethernet address.  The string <code>unknown</code> is also allowed
134       to indicate that the logical port has an unknown set of (additional)
135       source addresses.
136     </column>
137
138     <column name="port_security">
139       <p>
140         A set of L2 (Ethernet) or L3 (IPv4 or IPv6) addresses or L2+L3 pairs
141         from which the logical port is allowed to send packets and to which it
142         is allowed to receive packets.  If this column is empty, all addresses
143         are permitted.  Logical ports are always allowed to receive packets
144         addressed to multicast and broadcast addresses.
145       </p>
146
147       <p>
148         Each member of the set is a comma- or space-separated list.  A single
149         set member may have an Ethernet address, an IPv4 address, and an IPv6
150         address, or any subset.  Order is not significant.
151       </p>
152
153       <p>
154         TBD: exact semantics.  For now only Ethernet port security is
155         implemented.
156       </p>
157     </column>
158
159     <group title="Common Columns">
160       <column name="external_ids">
161         See <em>External IDs</em> at the beginning of this document.
162       </column>
163     </group>
164   </table>
165
166   <table name="ACL" title="Access Control List (ACL) rule">
167     <p>
168       Each row in this table represents one ACL rule for the logical switch in
169       its <ref column="lswitch"/> column.  The <ref column="action"/> column for
170       the highest-<ref column="priority"/> matching row in this table
171       determines a packet's treatment.  If no row matches, packets are allowed
172       by default.  (Default-deny treatment is possible: add a rule with <ref
173       column="priority"/> 1, <code>1</code> as <ref column="match"/>, and
174       <code>deny</code> as <ref column="action"/>.)
175     </p>
176
177     <column name="lswitch">
178       The switch to which the ACL rule applies.  The expression in the
179       <ref column="match"/> column may match against logical ports
180       within this switch.
181     </column>
182
183     <column name="priority">
184       The ACL rule's priority.  Rules with numerically higher priority take
185       precedence over those with lower.  If two ACL rules with the same
186       priority both match, then the one actually applied to a packet is
187       undefined.
188     </column>
189
190     <column name="match">
191       The packets that the ACL should match, in the same expression
192       language used for the <ref column="match" table="Pipeline"
193       db="OVN_Southbound"/> column in the OVN Southbound database's <ref
194       table="Pipeline" db="OVN_Southbound"/> table.  Match
195       <code>inport</code> and <code>outport</code> against names of
196       logical ports within <ref column="lswitch"/> to implement ingress
197       and egress ACLs, respectively.  In logical switches connected to
198       logical routers, the special port name <code>ROUTER</code> refers
199       to the logical router port.
200     </column>
201
202     <column name="action">
203       <p>The action to take when the ACL rule matches:</p>
204       
205       <ul>
206         <li>
207           <code>allow</code>: Forward the packet.
208         </li>
209
210         <li>
211           <code>allow-related</code>: Forward the packet and related traffic
212           (e.g. inbound replies to an outbound connection).
213         </li>
214
215         <li>
216           <code>drop</code>: Silently drop the packet.
217         </li>
218
219         <li>
220           <code>reject</code>: Drop the packet, replying with a RST for TCP or
221           ICMP unreachable message for other IP-based protocols.
222         </li>
223       </ul>
224     </column>
225
226     <column name="log">
227       If set to <code>true</code>, packets that match the ACL will trigger a
228       log message on the transport node or nodes that perform ACL processing.
229       Logging may be combined with any <ref column="action"/>.
230     </column>
231
232     <group title="Common Columns">
233       <column name="external_ids">
234         See <em>External IDs</em> at the beginning of this document.
235       </column>
236     </group>
237   </table>
238
239   <table name="Logical_Router" title="L3 logical router">
240     <p>
241       Each row represents one L3 logical router.  A given router's ports are
242       the <ref table="Logical_Router_Port"/> rows whose <ref
243       table="Logical_Router_Port" column="router"/> column points to its row.
244     </p>
245
246     <column name="ip">
247       The logical router's own IP address.  The logical router uses this
248       address for ICMP replies (e.g. network unreachable messages) and other
249       traffic that it originates and responds to traffic destined to this
250       address (e.g. ICMP echo requests).
251     </column>
252
253     <column name="default_gw">
254       IP address to use as default gateway, if any.
255     </column>
256
257     <group title="Common Columns">
258       <column name="external_ids">
259         See <em>External IDs</em> at the beginning of this document.
260       </column>
261     </group>
262   </table>
263
264   <table name="Logical_Router_Port" title="L3 logical router port">
265     <p>
266       A port within an L3 logical router.
267     </p>
268
269     <p>
270       A router port is always attached to a switch port.  The connection can be
271       identified by following the <ref column="router_port"
272       table="Logical_Port"/> column from an appropriate <ref
273       table="Logical_Port"/> row.
274     </p>
275
276     <column name="router">
277       The router to which the port belongs.
278     </column>
279
280     <column name="network">
281       The IP network and netmask of the network on the router port.  Used for
282       routing.
283     </column>
284
285     <column name="mac">
286       The Ethernet address that belongs to this router port.
287     </column>
288
289     <group title="Common Columns">
290       <column name="external_ids">
291         See <em>External IDs</em> at the beginning of this document.
292       </column>
293     </group>
294   </table>
295 </database>