Blame view

Documentation/networking/switchdev.txt 17 KB
4ceec22d6   Scott Feldman   switchdev: bring ...
1
2
3
4
5
6
7
8
9
10
11
12
13
  Ethernet switch device driver model (switchdev)
  ===============================================
  Copyright (c) 2014 Jiri Pirko <jiri@resnulli.us>
  Copyright (c) 2014-2015 Scott Feldman <sfeldma@gmail.com>
  
  
  The Ethernet switch device driver model (switchdev) is an in-kernel driver
  model for switch devices which offload the forwarding (data) plane from the
  kernel.
  
  Figure 1 is a block diagram showing the components of the switchdev model for
  an example setup using a data-center-class switch ASIC chip.  Other setups
  with SR-IOV or soft switches, such as OVS, are possible.
51513748d   Randy Dunlap   Documentation: ne...
14
15
16
17
18
19
20
21
22
23
24
                               User-space tools
  
         user space                   |
        +-------------------------------------------------------------------+
         kernel                       | Netlink
                                      |
                       +--------------+-------------------------------+
                       |         Network stack                        |
                       |           (Linux)                            |
                       |                                              |
                       +----------------------------------------------+
d5066c467   Liam Beguin   switchdev: docume...
25

4ceec22d6   Scott Feldman   switchdev: bring ...
26
                             sw1p2     sw1p4     sw1p6
51513748d   Randy Dunlap   Documentation: ne...
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
                        sw1p1  +  sw1p3  +  sw1p5  +          eth1
                          +    |    +    |    +    |            +
                          |    |    |    |    |    |            |
                       +--+----+----+----+----+----+---+  +-----+-----+
                       |         Switch driver         |  |    mgmt   |
                       |        (this document)        |  |   driver  |
                       |                               |  |           |
                       +--------------+----------------+  +-----------+
                                      |
         kernel                       | HW bus (eg PCI)
        +-------------------------------------------------------------------+
         hardware                     |
                       +--------------+----------------+
                       |         Switch device (sw1)   |
                       |  +----+                       +--------+
                       |  |    v offloaded data path   | mgmt port
                       |  |    |                       |
                       +--|----|----+----+----+----+---+
                          |    |    |    |    |    |
                          +    +    +    +    +    +
                         p1   p2   p3   p4   p5   p6
  
                               front-panel ports
d5066c467   Liam Beguin   switchdev: docume...
50

4ceec22d6   Scott Feldman   switchdev: bring ...
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
  
                                      Fig 1.
  
  
  Include Files
  -------------
  
  #include <linux/netdevice.h>
  #include <net/switchdev.h>
  
  
  Configuration
  -------------
  
  Use "depends NET_SWITCHDEV" in driver's Kconfig to ensure switchdev model
  support is built for driver.
  
  
  Switch Ports
  ------------
  
  On switchdev driver initialization, the driver will allocate and register a
  struct net_device (using register_netdev()) for each enumerated physical switch
  port, called the port netdev.  A port netdev is the software representation of
  the physical port and provides a conduit for control traffic to/from the
  controller (the kernel) and the network, as well as an anchor point for higher
  level constructs such as bridges, bonds, VLANs, tunnels, and L3 routers.  Using
  standard netdev tools (iproute2, ethtool, etc), the port netdev can also
  provide to the user access to the physical properties of the switch port such
  as PHY link state and I/O statistics.
  
  There is (currently) no higher-level kernel object for the switch beyond the
  port netdevs.  All of the switchdev driver ops are netdev ops or switchdev ops.
  
  A switch management port is outside the scope of the switchdev driver model.
  Typically, the management port is not participating in offloaded data plane and
  is loaded with a different driver, such as a NIC driver, on the management port
  device.
75f3a1018   Ido Schimmel   switchdev: Use sw...
89
90
91
92
93
94
95
96
97
98
99
  Switch ID
  ^^^^^^^^^
  
  The switchdev driver must implement the switchdev op switchdev_port_attr_get
  for SWITCHDEV_ATTR_ID_PORT_PARENT_ID for each port netdev, returning the same
  physical ID for each port of a switch.  The ID must be unique between switches
  on the same system.  The ID does not need to be unique between switches on
  different systems.
  
  The switch ID is used to locate ports on a switch and to know if aggregated
  ports belong to the same switch.
4ceec22d6   Scott Feldman   switchdev: bring ...
100
101
102
103
104
105
106
107
108
109
  Port Netdev Naming
  ^^^^^^^^^^^^^^^^^^
  
  Udev rules should be used for port netdev naming, using some unique attribute
  of the port as a key, for example the port MAC address or the port PHYS name.
  Hard-coding of kernel netdev names within the driver is discouraged; let the
  kernel pick the default netdev name, and let udev set the final name based on a
  port attribute.
  
  Using port PHYS name (ndo_get_phys_port_name) for the key is particularly
1f5dc44c8   Scott Feldman   switchdev: apply ...
110
  useful for dynamically-named ports where the device names its ports based on
4ceec22d6   Scott Feldman   switchdev: bring ...
111
112
113
  external configuration.  For example, if a physical 40G port is split logically
  into 4 10G ports, resulting in 4 port netdevs, the device can give a unique
  name for each port using port PHYS name.  The udev rule would be:
75f3a1018   Ido Schimmel   switchdev: Use sw...
114
115
  SUBSYSTEM=="net", ACTION=="add", ATTR{phys_switch_id}=="<phys_switch_id>", \
  	ATTR{phys_port_name}!="", NAME="swX$attr{phys_port_name}"
4ceec22d6   Scott Feldman   switchdev: bring ...
116
117
118
119
  
  Suggested naming convention is "swXpYsZ", where X is the switch name or ID, Y
  is the port name or ID, and Z is the sub-port name or ID.  For example, sw1p1s0
  would be sub-port 0 on port 1 on switch 1.
4ceec22d6   Scott Feldman   switchdev: bring ...
120
121
122
123
124
125
126
127
  Port Features
  ^^^^^^^^^^^^^
  
  NETIF_F_NETNS_LOCAL
  
  If the switchdev driver (and device) only supports offloading of the default
  network namespace (netns), the driver should set this feature flag to prevent
  the port netdev from being moved out of the default netns.  A netns-aware
1f5dc44c8   Scott Feldman   switchdev: apply ...
128
  driver/device would not set this flag and be responsible for partitioning
4ceec22d6   Scott Feldman   switchdev: bring ...
129
130
131
132
133
134
135
136
137
138
  hardware to preserve netns containment.  This means hardware cannot forward
  traffic from a port in one namespace to another port in another namespace.
  
  Port Topology
  ^^^^^^^^^^^^^
  
  The port netdevs representing the physical switch ports can be organized into
  higher-level switching constructs.  The default construct is a standalone
  router port, used to offload L3 forwarding.  Two or more ports can be bonded
  together to form a LAG.  Two or more ports (or LAGs) can be bridged to bridge
d290f1fc7   Scott Feldman   switchdev: docume...
139
  L2 networks.  VLANs can be applied to sub-divide L2 networks.  L2-over-L3
4ceec22d6   Scott Feldman   switchdev: bring ...
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
  tunnels can be built on ports.  These constructs are built using standard Linux
  tools such as the bridge driver, the bonding/team drivers, and netlink-based
  tools such as iproute2.
  
  The switchdev driver can know a particular port's position in the topology by
  monitoring NETDEV_CHANGEUPPER notifications.  For example, a port moved into a
  bond will see it's upper master change.  If that bond is moved into a bridge,
  the bond's upper master will change.  And so on.  The driver will track such
  movements to know what position a port is in in the overall topology by
  registering for netdevice events and acting on NETDEV_CHANGEUPPER.
  
  L2 Forwarding Offload
  ---------------------
  
  The idea is to offload the L2 data forwarding (switching) path from the kernel
  to the switchdev device by mirroring bridge FDB entries down to the device.  An
  FDB entry is the {port, MAC, VLAN} tuple forwarding destination.
  
  To offloading L2 bridging, the switchdev driver/device should support:
  
  	- Static FDB entries installed on a bridge port
  	- Notification of learned/forgotten src mac/vlans from device
  	- STP state changes on the port
  	- VLAN flooding of multicast/broadcast and unknown unicast packets
  
  Static FDB Entries
  ^^^^^^^^^^^^^^^^^^
  
  The switchdev driver should implement ndo_fdb_add, ndo_fdb_del and ndo_fdb_dump
  to support static FDB entries installed to the device.  Static bridge FDB
  entries are installed, for example, using iproute2 bridge cmd:
  
  	bridge fdb add ADDR dev DEV [vlan VID] [self]
4b5364fbd   Scott Feldman   switchdev: docume...
173
  The driver should use the helper switchdev_port_fdb_xxx ops for ndo_fdb_xxx
57d80838d   Jiri Pirko   switchdev: rename...
174
  ops, and handle add/delete/dump of SWITCHDEV_OBJ_ID_PORT_FDB object using
4b5364fbd   Scott Feldman   switchdev: docume...
175
  switchdev_port_obj_xxx ops.
1f5dc44c8   Scott Feldman   switchdev: apply ...
176
177
  XXX: what should be done if offloading this rule to hardware fails (for
  example, due to full capacity in hardware tables) ?
4ceec22d6   Scott Feldman   switchdev: bring ...
178
179
180
181
182
183
184
185
186
187
188
189
190
  Note: by default, the bridge does not filter on VLAN and only bridges untagged
  traffic.  To enable VLAN support, turn on VLAN filtering:
  
  	echo 1 >/sys/class/net/<bridge>/bridge/vlan_filtering
  
  Notification of Learned/Forgotten Source MAC/VLANs
  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  
  The switch device will learn/forget source MAC address/VLAN on ingress packets
  and notify the switch driver of the mac/vlan/port tuples.  The switch driver,
  in turn, will notify the bridge driver using the switchdev notifier call:
  
  	err = call_switchdev_notifiers(val, dev, info);
f5ed2febd   Scott Feldman   switchdev: docume...
191
192
193
194
195
  Where val is SWITCHDEV_FDB_ADD when learning and SWITCHDEV_FDB_DEL when
  forgetting, and info points to a struct switchdev_notifier_fdb_info.  On
  SWITCHDEV_FDB_ADD, the bridge driver will install the FDB entry into the
  bridge's FDB and mark the entry as NTF_EXT_LEARNED.  The iproute2 bridge
  command will label these entries "offload":
4ceec22d6   Scott Feldman   switchdev: bring ...
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
  
  	$ bridge fdb
  	52:54:00:12:35:01 dev sw1p1 master br0 permanent
  	00:02:00:00:02:00 dev sw1p1 master br0 offload
  	00:02:00:00:02:00 dev sw1p1 self
  	52:54:00:12:35:02 dev sw1p2 master br0 permanent
  	00:02:00:00:03:00 dev sw1p2 master br0 offload
  	00:02:00:00:03:00 dev sw1p2 self
  	33:33:00:00:00:01 dev eth0 self permanent
  	01:00:5e:00:00:01 dev eth0 self permanent
  	33:33:ff:00:00:00 dev eth0 self permanent
  	01:80:c2:00:00:0e dev eth0 self permanent
  	33:33:00:00:00:01 dev br0 self permanent
  	01:00:5e:00:00:01 dev br0 self permanent
  	33:33:ff:12:35:01 dev br0 self permanent
  
  Learning on the port should be disabled on the bridge using the bridge command:
  
  	bridge link set dev DEV learning off
  
  Learning on the device port should be enabled, as well as learning_sync:
  
  	bridge link set dev DEV learning on self
  	bridge link set dev DEV learning_sync on self
5a7844981   Chris Packham   switchdev: docume...
220
  Learning_sync attribute enables syncing of the learned/forgotten FDB entry to
4ceec22d6   Scott Feldman   switchdev: bring ...
221
222
223
224
  the bridge's FDB.  It's possible, but not optimal, to enable learning on the
  device port and on the bridge port, and disable learning_sync.
  
  To support learning and learning_sync port attributes, the driver implements
1f8683987   Jiri Pirko   switchdev: rename...
225
226
227
  switchdev op switchdev_port_attr_get/set for
  SWITCHDEV_ATTR_PORT_ID_BRIDGE_FLAGS. The driver should initialize the attributes
  to the hardware defaults.
4ceec22d6   Scott Feldman   switchdev: bring ...
228
229
230
  
  FDB Ageing
  ^^^^^^^^^^
45ffda75e   Scott Feldman   switchdev: update...
231
232
233
234
235
  The bridge will skip ageing FDB entries marked with NTF_EXT_LEARNED and it is
  the responsibility of the port driver/device to age out these entries.  If the
  port device supports ageing, when the FDB entry expires, it will notify the
  driver which in turn will notify the bridge with SWITCHDEV_FDB_DEL.  If the
  device does not support ageing, the driver can simulate ageing using a
5a7844981   Chris Packham   switchdev: docume...
236
  garbage collection timer to monitor FDB entries.  Expired entries will be
45ffda75e   Scott Feldman   switchdev: update...
237
238
239
240
241
  notified to the bridge using SWITCHDEV_FDB_DEL.  See rocker driver for
  example of driver running ageing timer.
  
  To keep an NTF_EXT_LEARNED entry "alive", the driver should refresh the FDB
  entry by calling call_switchdev_notifiers(SWITCHDEV_FDB_ADD, ...).  The
4ceec22d6   Scott Feldman   switchdev: bring ...
242
243
  notification will reset the FDB entry's last-used time to now.  The driver
  should rate limit refresh notifications, for example, no more than once a
45ffda75e   Scott Feldman   switchdev: update...
244
  second.  (The last-used time is visible using the bridge -s fdb option).
4ceec22d6   Scott Feldman   switchdev: bring ...
245
246
247
248
249
250
  
  STP State Change on Port
  ^^^^^^^^^^^^^^^^^^^^^^^^
  
  Internally or with a third-party STP protocol implementation (e.g. mstpd), the
  bridge driver maintains the STP state for ports, and will notify the switch
f5ed2febd   Scott Feldman   switchdev: docume...
251
  driver of STP state change on a port using the switchdev op
1f8683987   Jiri Pirko   switchdev: rename...
252
  switchdev_attr_port_set for SWITCHDEV_ATTR_PORT_ID_STP_UPDATE.
4ceec22d6   Scott Feldman   switchdev: bring ...
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
  
  State is one of BR_STATE_*.  The switch driver can use STP state updates to
  update ingress packet filter list for the port.  For example, if port is
  DISABLED, no packets should pass, but if port moves to BLOCKED, then STP BPDUs
  and other IEEE 01:80:c2:xx:xx:xx link-local multicast packets can pass.
  
  Note that STP BDPUs are untagged and STP state applies to all VLANs on the port
  so packet filters should be applied consistently across untagged and tagged
  VLANs on the port.
  
  Flooding L2 domain
  ^^^^^^^^^^^^^^^^^^
  
  For a given L2 VLAN domain, the switch device should flood multicast/broadcast
  and unknown unicast packets to all ports in domain, if allowed by port's
  current STP state.  The switch driver, knowing which ports are within which
371e59adc   Ido Schimmel   switchdev: Make f...
269
270
  vlan L2 domain, can program the switch device for flooding.  The packet may
  be sent to the port netdev for processing by the bridge driver.  The
a48037e7c   Scott Feldman   switchdev: update...
271
272
  bridge should not reflood the packet to the same ports the device flooded,
  otherwise there will be duplicate packets on the wire.
6bc506b4f   Ido Schimmel   bridge: switchdev...
273
274
275
276
  To avoid duplicate packets, the switch driver should mark a packet as already
  forwarded by setting the skb->offload_fwd_mark bit. The bridge driver will mark
  the skb using the ingress bridge port's mark and prevent it from being forwarded
  through any bridge port with the same mark.
4ceec22d6   Scott Feldman   switchdev: bring ...
277
278
279
280
281
  
  It is possible for the switch device to not handle flooding and push the
  packets up to the bridge driver for flooding.  This is not ideal as the number
  of ports scale in the L2 domain as the device is much more efficient at
  flooding packets that software.
741af0053   Ido Schimmel   switchdev: Add su...
282
283
  If supported by the device, flood control can be offloaded to it, preventing
  certain netdevs from flooding unicast traffic for which there is no FDB entry.
4ceec22d6   Scott Feldman   switchdev: bring ...
284
285
  IGMP Snooping
  ^^^^^^^^^^^^^
4f5590f8c   Elad Raz   switchdev: Adding...
286
287
288
289
290
291
  In order to support IGMP snooping, the port netdevs should trap to the bridge
  driver all IGMP join and leave messages.
  The bridge multicast module will notify port netdevs on every multicast group
  changed whether it is static configured or dynamically joined/leave.
  The hardware implementation should be forwarding all registered multicast
  traffic groups only to the configured ports.
4ceec22d6   Scott Feldman   switchdev: bring ...
292

7616dcbb2   Scott Feldman   switchdev: docume...
293
294
  L3 Routing Offload
  ------------------
4ceec22d6   Scott Feldman   switchdev: bring ...
295
296
297
298
  
  Offloading L3 routing requires that device be programmed with FIB entries from
  the kernel, with the device doing the FIB lookup and forwarding.  The device
  does a longest prefix match (LPM) on FIB entries matching route prefix and
7616dcbb2   Scott Feldman   switchdev: docume...
299
  forwards the packet to the matching FIB entry's nexthop(s) egress ports.
fd41b0eaa   Jiri Pirko   doc: update switc...
300
301
302
303
304
305
  To program the device, the driver has to register a FIB notifier handler
  using register_fib_notifier. The following events are available:
  FIB_EVENT_ENTRY_ADD: used for both adding a new FIB entry to the device,
                       or modifying an existing entry on the device.
  FIB_EVENT_ENTRY_DEL: used for removing a FIB entry
  FIB_EVENT_RULE_ADD, FIB_EVENT_RULE_DEL: used to propagate FIB rule changes
7616dcbb2   Scott Feldman   switchdev: docume...
306

fd41b0eaa   Jiri Pirko   doc: update switc...
307
  FIB_EVENT_ENTRY_ADD and FIB_EVENT_ENTRY_DEL events pass:
7616dcbb2   Scott Feldman   switchdev: docume...
308

fd41b0eaa   Jiri Pirko   doc: update switc...
309
310
  	struct fib_entry_notifier_info {
  		struct fib_notifier_info info; /* must be first */
7616dcbb2   Scott Feldman   switchdev: docume...
311
312
313
314
315
  		u32 dst;
  		int dst_len;
  		struct fib_info *fi;
  		u8 tos;
  		u8 type;
7616dcbb2   Scott Feldman   switchdev: docume...
316
  		u32 tb_id;
fd41b0eaa   Jiri Pirko   doc: update switc...
317
318
  		u32 nlflags;
  	};
7616dcbb2   Scott Feldman   switchdev: docume...
319
320
321
  
  to add/modify/delete IPv4 dst/dest_len prefix on table tb_id.  The *fi
  structure holds details on the route and route's nexthops.  *dev is one of the
fd41b0eaa   Jiri Pirko   doc: update switc...
322
  port netdevs mentioned in the route's next hop list.
4ceec22d6   Scott Feldman   switchdev: bring ...
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
  
  Routes offloaded to the device are labeled with "offload" in the ip route
  listing:
  
  	$ ip route show
  	default via 192.168.0.2 dev eth0
  	11.0.0.0/30 dev sw1p1  proto kernel  scope link  src 11.0.0.2 offload
  	11.0.0.4/30 via 11.0.0.1 dev sw1p1  proto zebra  metric 20 offload
  	11.0.0.8/30 dev sw1p2  proto kernel  scope link  src 11.0.0.10 offload
  	11.0.0.12/30 via 11.0.0.9 dev sw1p2  proto zebra  metric 20 offload
  	12.0.0.2  proto zebra  metric 30 offload
  		nexthop via 11.0.0.1  dev sw1p1 weight 1
  		nexthop via 11.0.0.9  dev sw1p2 weight 1
  	12.0.0.3 via 11.0.0.1 dev sw1p1  proto zebra  metric 20 offload
  	12.0.0.4 via 11.0.0.9 dev sw1p2  proto zebra  metric 20 offload
  	192.168.0.0/24 dev eth0  proto kernel  scope link  src 192.168.0.15
fd41b0eaa   Jiri Pirko   doc: update switc...
339
  The "offload" flag is set in case at least one device offloads the FIB entry.
7616dcbb2   Scott Feldman   switchdev: docume...
340
  XXX: add/mod/del IPv6 FIB API
4ceec22d6   Scott Feldman   switchdev: bring ...
341
342
343
344
345
346
347
348
349
350
351
352
353
354
  
  Nexthop Resolution
  ^^^^^^^^^^^^^^^^^^
  
  The FIB entry's nexthop list contains the nexthop tuple (gateway, dev), but for
  the switch device to forward the packet with the correct dst mac address, the
  nexthop gateways must be resolved to the neighbor's mac address.  Neighbor mac
  address discovery comes via the ARP (or ND) process and is available via the
  arp_tbl neighbor table.  To resolve the routes nexthop gateways, the driver
  should trigger the kernel's neighbor resolution process.  See the rocker
  driver's rocker_port_ipv4_resolve() for an example.
  
  The driver can monitor for updates to arp_tbl using the netevent notifier
  NETEVENT_NEIGH_UPDATE.  The device can be programmed with resolved nexthops
dd19f83d6   Scott Feldman   rocker: hook ndo_...
355
356
  for the routes as arp_tbl updates.  The driver implements ndo_neigh_destroy
  to know when arp_tbl neighbor entries are purged from the port.
7ea6eb3f5   Jiri Pirko   switchdev: introd...
357
358
359
360
361
362
363
364
  
  Transaction item queue
  ^^^^^^^^^^^^^^^^^^^^^^
  
  For switchdev ops attr_set and obj_add, there is a 2 phase transaction model
  used. First phase is to "prepare" anything needed, including various checks,
  memory allocation, etc. The goal is to handle the stuff that is not unlikely
  to fail here. The second phase is to "commit" the actual changes.
3e3476604   Nicolas Dichtel   switchdev: fix ty...
365
  Switchdev provides an infrastructure for sharing items (for example memory
7ea6eb3f5   Jiri Pirko   switchdev: introd...
366
367
368
369
370
371
372
373
374
  allocations) between the two phases.
  
  The object created by a driver in "prepare" phase and it is queued up by:
  switchdev_trans_item_enqueue()
  During the "commit" phase, the driver gets the object by:
  switchdev_trans_item_dequeue()
  
  If a transaction is aborted during "prepare" phase, switchdev code will handle
  cleanup of the queued-up objects.