ovn-nb: Rename Port_Bindings 'macs' column to 'addresses'.
[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.
36     </p>
37
38     <column name="name">
39       <p>
40         A name for the logical switch.  This name has no special meaning or purpose
41         other than to provide convenience for human interaction with the ovn-nb
42         database.  There is no requirement for the name to be unique.  The
43         logical switch's UUID should be used as the unique identifier.
44       </p>
45     </column>
46
47     <column name="ports">
48       <p>
49         The logical ports connected to the logical switch.
50       </p>
51
52       <p>
53         It is an error for multiple logical switches to include the same
54         logical port.
55       </p>
56     </column>
57
58     <column name="router_port">
59       <p>
60         The router port to which this logical switch is connected, or empty if
61         this logical switch is not connected to any router.  A switch may be
62         connected to at most one logical router, but this is not a significant
63         restriction because logical routers may be connected into arbitrary
64         topologies.
65       </p>
66
67       <p>
68         It is an error for multiple logical switches to refer to the same
69         router port.
70       </p>
71     </column>
72
73     <column name="acls">
74       Access control rules that apply to packets within the logical switch.
75     </column>
76
77     <group title="Common Columns">
78       <column name="external_ids">
79         See <em>External IDs</em> at the beginning of this document.
80       </column>
81     </group>
82   </table>
83
84   <table name="Logical_Port" title="L2 logical switch port">
85     <p>
86       A port within an L2 logical switch.
87     </p>
88
89     <column name="name">
90       <p>
91       The logical port name.
92       </p>
93
94       <p>
95       For entities (VMs or containers) that are spawned in the hypervisor,
96       the name used here must match those used in the <ref key="iface-id"
97       table="Interface" column="external_ids" db="Open_vSwitch"/> in the
98       <ref db="Open_vSwitch"/> database's <ref table="Interface"
99       db="Open_vSwitch"/> table, because hypervisors use <ref key="iface-id"
100       table="Interface" column="external_ids" db="Open_vSwitch"/> as a lookup
101       key to identify the network interface of that entity.
102       </p>
103
104       <p>
105       For containers that are spawned inside a VM, the name can be
106       any unique identifier.  In such a case, <ref column="parent_name"/>
107       must be populated.
108       </p>
109     </column>
110
111     <column name="type">
112       <p>
113       Specify a type for this logical port.  Logical ports can be used to model
114       other types of connectivity into an OVN logical switch.  Leaving this
115       column blank maintains the default logical port behavior, which is
116       for a VM (or VIF) interface.  The following other types are defined:
117       </p>
118
119       <dl>
120         <dt><code>localnet</code></dt>
121         <dd>A connection to a locally accessible network from each
122         <code>ovn-controller</code> instance.  A logical switch can only
123         have a single <code>localnet</code> port attached and at most one
124         regular logical port.  This is used to model direct connectivity
125         to an existing network.</dd>
126       </dl>
127
128       <dl>
129         <dt><code>vtep</code></dt>
130         <dd>A port to a logical switch on a VTEP gateway.  In order
131         to get this port correctly recognized by the OVN controller, the
132         <ref column="options" table="Logical_Port"/>:<code>vtep-physical-switch</code>
133         and <ref column="options" table="Logical_Port"/>:<code>vtep-logical-switch</code>
134         must also be defined.</dd>
135       </dl>
136     </column>
137
138     <column name="options">
139       <p>
140         This column provides key/value settings specific to the logical port
141         <ref column="type"/>.  The following options are defined:
142       </p>
143
144       <dl>
145         <dt><code>network_name</code></dt>
146         <dd>
147           Must be set when <ref column="type"/> is <code>localnet</code>.
148           <code>ovn-controller</code> uses local configuration to determine
149           exactly how to connect to this locally accessible network.
150         </dd>
151       </dl>
152
153       <dl>
154         <dt><code>vtep-physical-switch</code></dt>
155         <dd>
156           The name of the VTEP gateway.  Must be set when
157           <ref column="type"/> is <code>vtep</code>.
158         </dd>
159       </dl>
160
161       <dl>
162         <dt><code>vtep-logical-switch</code></dt>
163         <dd>
164           A logical switch name connected by the VTEP gateway.  Must be
165           set when <ref column="type"/> is <code>vtep</code>.
166         </dd>
167       </dl>
168     </column>
169
170     <column name="parent_name">
171       When <ref column="name"/> identifies the interface of a container
172       spawned inside a tenant VM, this column represents the VM interface
173       through which the container interface sends its network traffic.
174       The name used here must match those used in the <ref key="iface-id"
175       table="Interface" column="external_ids" db="Open_vSwitch"/> in the
176       <ref db="Open_vSwitch"/> table, because hypervisors in this case use
177       <ref key="iface-id" table="Interface" column="external_ids"
178       db="Open_vSwitch"/> as a lookup key to identify the network interface
179       of the tenant VM.
180     </column>
181
182     <column name="tag">
183      <p>
184       When <ref column="type"/> is empty and <ref column="name"/> identifies
185       the interface of a container spawned inside a tenant VM, this column
186       identifies the VLAN tag in the network traffic associated with that
187       container's network interface. When there are multiple container
188       interfaces inside a VM, all of them send their network traffic through a
189       single VM network interface and this value helps OVN identify the correct
190       container interface.
191      </p>
192
193      <p>
194       When <ref column="type"/> is set to <code>localnet</code>, this can be
195       set to indicate that the port represents a connection to a specific
196       VLAN on a locally accessible network. The VLAN ID is used to match
197       incoming traffic and is also added to outgoing traffic.
198      </p>
199     </column>
200
201     <column name="up">
202       This column is populated by <code>ovn-northd</code>, rather than by
203       the CMS plugin as is most of this database.  When a logical port is bound
204       to a physical location in the OVN Southbound database <ref
205       db="OVN_Southbound" table="Binding"/> table, <code>ovn-northd</code>
206       sets this column to <code>true</code>; otherwise, or if the port
207       becomes unbound later, it sets it to <code>false</code>.  This
208       allows the CMS to wait for a VM's (or container's) networking to
209       become active before it allows the VM (or container) to start.
210     </column>
211
212     <column name="enabled">
213       This column is used to administratively set port state.  If this column is
214       empty or is set to <code>true</code>, the port is enabled.  If this column
215       is set to <code>false</code>, the port is disabled.  A disabled port has all
216       ingress and egress traffic dropped.
217     </column>
218
219     <column name="addresses">
220       The logical port's own Ethernet address or addresses, each in the form
221       <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>.
222       Like a physical Ethernet NIC, a logical port ordinarily has a single
223       fixed Ethernet address.  The string <code>unknown</code> is also allowed
224       to indicate that the logical port has an unknown set of (additional)
225       source addresses.
226     </column>
227
228     <column name="port_security">
229       <p>
230         A set of L2 (Ethernet) addresses
231         from which the logical port is allowed to send packets and to which it
232         is allowed to receive packets.  If this column is empty, all addresses
233         are permitted.  Logical ports are always allowed to receive packets
234         addressed to multicast and broadcast addresses.
235       </p>
236
237       <p>
238         Each member of the set is an Ethernet address in the form
239         <var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>:<var>xx</var>.
240       </p>
241
242       <p>
243         This specification will be extended to support L3 port security.
244       </p>
245     </column>
246
247     <group title="Common Columns">
248       <column name="external_ids">
249         See <em>External IDs</em> at the beginning of this document.
250       </column>
251     </group>
252   </table>
253
254   <table name="ACL" title="Access Control List (ACL) rule">
255     <p>
256       Each row in this table represents one ACL rule for a logical switch
257       that points to it through its <ref column="acls"/> column.  The <ref
258       column="action"/> column for the highest-<ref column="priority"/>
259       matching row in this table determines a packet's treatment.  If no row
260       matches, packets are allowed by default.  (Default-deny treatment is
261       possible: add a rule with <ref column="priority"/> 1, <code>1</code> as
262       <ref column="match"/>, and <code>deny</code> as <ref column="action"/>.)
263     </p>
264
265     <column name="priority">
266       <p>
267         The ACL rule's priority.  Rules with numerically higher priority
268         take precedence over those with lower.  If two ACL rules with
269         the same priority both match, then the one actually applied to a
270         packet is undefined.
271       </p>
272
273       <p>
274         Return traffic from an <code>allow-related</code> flow is always
275         allowed and cannot be changed through an ACL.
276       </p>
277     </column>
278
279     <column name="direction">
280       <p>Direction of the traffic to which this rule should apply:</p>
281       <ul>
282         <li>
283           <code>from-lport</code>: Used to implement filters on traffic
284           arriving from a logical port.  These rules are applied to the
285           logical switch's ingress pipeline.
286         </li>
287         <li>
288           <code>to-lport</code>: Used to implement filters on traffic
289           forwarded to a logical port.  These rules are applied to the
290           logical switch's egress pipeline.
291         </li>
292       </ul>
293     </column>
294
295     <column name="match">
296       <p>
297         The packets that the ACL should match, in the same expression
298         language used for the <ref column="match" table="Logical_Flow"
299         db="OVN_Southbound"/> column in the OVN Southbound database's
300         <ref table="Logical_Flow" db="OVN_Southbound"/> table.  The
301         <code>outport</code> logical port is only available in the
302         <code>to-lport</code> direction (the <code>inport</code> is
303         available in both directions).
304       </p>
305
306       <p>
307         By default all traffic is allowed.  When writing a more
308         restrictive policy, it is important to remember to allow flows
309         such as ARP and IPv6 neighbor discovery packets.
310       </p>
311
312       <p>
313         In logical switches connected to logical routers, the special
314         port name <code>ROUTER</code> refers to the logical router port.
315       </p>
316     </column>
317
318     <column name="action">
319       <p>The action to take when the ACL rule matches:</p>
320       <ul>
321         <li>
322           <code>allow</code>: Forward the packet.
323         </li>
324
325         <li>
326           <code>allow-related</code>: Forward the packet and related traffic
327           (e.g. inbound replies to an outbound connection).
328         </li>
329
330         <li>
331           <code>drop</code>: Silently drop the packet.
332         </li>
333
334         <li>
335           <code>reject</code>: Drop the packet, replying with a RST for TCP or
336           ICMP unreachable message for other IP-based protocols.
337           <code>Not implemented--currently treated as drop</code>
338         </li>
339       </ul>
340     </column>
341
342     <column name="log">
343       <p>
344         If set to <code>true</code>, packets that match the ACL will trigger a
345         log message on the transport node or nodes that perform ACL processing.
346         Logging may be combined with any <ref column="action"/>.
347       </p>
348
349       <p>
350         Logging is not yet implemented.
351       </p>
352     </column>
353
354     <group title="Common Columns">
355       <column name="external_ids">
356         See <em>External IDs</em> at the beginning of this document.
357       </column>
358     </group>
359   </table>
360
361   <table name="Logical_Router" title="L3 logical router">
362     <p>
363       Each row represents one L3 logical router.
364     </p>
365
366     <column name="name">
367       <p>
368         A name for the logical router.  This name has no special meaning or purpose
369         other than to provide convenience for human interaction with the ovn-nb
370         database.  There is no requirement for the name to be unique.  The
371         logical router's UUID should be used as the unique identifier.
372       </p>
373     </column>
374
375     <column name="ports">
376       The router's ports.
377     </column>
378
379     <column name="default_gw">
380       IP address to use as default gateway, if any.
381     </column>
382
383     <group title="Common Columns">
384       <column name="external_ids">
385         See <em>External IDs</em> at the beginning of this document.
386       </column>
387     </group>
388   </table>
389
390   <table name="Logical_Router_Port" title="L3 logical router port">
391     <p>
392       A port within an L3 logical router.
393     </p>
394
395     <p>
396       Exactly one <ref table="Logical_Router"/> row must reference a given
397       logical router port.
398     </p>
399
400     <column name="name">
401       <p>
402         A name for the logical router port.  This name has no special meaning or purpose
403         other than to provide convenience for human interaction with the ovn-nb
404         database.  There is no requirement for the name to be unique.  The
405         logical router port's UUID should be used as the unique identifier.
406       </p>
407     </column>
408
409     <column name="network">
410       The IP address of the router and the netmask.  For example,
411       <code>192.168.0.1/24</code> indicates that the router's IP address is
412       192.168.0.1 and that packets destined to 192.168.0.<var>x</var> should be
413       routed to this port.
414     </column>
415
416     <column name="mac">
417       The Ethernet address that belongs to this router port.
418     </column>
419
420     <group title="Attachment">
421       <p>
422         A given router port serves one of two purposes:
423       </p>
424
425       <ul>
426         <li>
427           To attach a logical switch to a logical router.  A logical router
428           port of this type is referenced by exactly the <ref
429           column="router_port" table="Logical_Switch"/> column in exactly one
430           <ref table="Logical_Switch"/> row.  The <ref column="peer"/> column
431           is empty.
432         </li>
433
434         <li>
435           To connect one logical router to another.  This requires a pair of
436           logical router ports, each connected to a different router.  Each
437           router port in the pair specifies the other in its <ref
438           column="peer"/> column.  No <ref table="Logical_Switch"/> refers to
439           the router port.
440         </li>
441       </ul>
442
443       <column name="peer">
444         <p>
445           For a router port used to connect two logical routers, this
446           identifies the other router port in the pair.
447         </p>
448
449         <p>
450           For a router port attached to a logical switch, this column is empty.
451         </p>
452       </column>
453     </group>
454
455     <group title="Common Columns">
456       <column name="external_ids">
457         See <em>External IDs</em> at the beginning of this document.
458       </column>
459     </group>
460   </table>
461 </database>