]> git.proxmox.com Git - mirror_ovs.git/blame - lib/dpif-netdev.c
dpif-netdev: Add DPDK netdev.
[mirror_ovs.git] / lib / dpif-netdev.c
CommitLineData
72865317 1/*
ff073a71 2 * Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
72865317
BP
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <config.h>
18#include "dpif.h"
19
72865317
BP
20#include <ctype.h>
21#include <errno.h>
22#include <fcntl.h>
23#include <inttypes.h>
72865317 24#include <netinet/in.h>
9d82ec47 25#include <sys/socket.h>
7f3adc00 26#include <net/if.h>
cdee00fd 27#include <stdint.h>
72865317
BP
28#include <stdlib.h>
29#include <string.h>
30#include <sys/ioctl.h>
31#include <sys/stat.h>
72865317
BP
32#include <unistd.h>
33
2c0ea78f 34#include "classifier.h"
72865317 35#include "csum.h"
614c4892 36#include "dpif.h"
72865317 37#include "dpif-provider.h"
614c4892 38#include "dummy.h"
36956a7d 39#include "dynamic-string.h"
72865317
BP
40#include "flow.h"
41#include "hmap.h"
6c3eee82 42#include "latch.h"
72865317 43#include "list.h"
8c301900 44#include "meta-flow.h"
72865317 45#include "netdev.h"
de281153 46#include "netdev-vport.h"
cdee00fd 47#include "netlink.h"
f094af7b 48#include "odp-execute.h"
72865317
BP
49#include "odp-util.h"
50#include "ofp-print.h"
51#include "ofpbuf.h"
61e7deb1 52#include "ovs-rcu.h"
72865317
BP
53#include "packets.h"
54#include "poll-loop.h"
26c6b6cd 55#include "random.h"
d33ed218 56#include "seq.h"
462278db 57#include "shash.h"
0cbfe35d 58#include "sset.h"
72865317 59#include "timeval.h"
74cc3969 60#include "unixctl.h"
72865317 61#include "util.h"
72865317 62#include "vlog.h"
5136ce49 63
d98e6007 64VLOG_DEFINE_THIS_MODULE(dpif_netdev);
72865317 65
2c0ea78f
GS
66/* By default, choose a priority in the middle. */
67#define NETDEV_RULE_PRIORITY 0x8000
68
e4cfed38
PS
69#define NR_THREADS 1
70
72865317 71/* Configuration parameters. */
72865317
BP
72enum { MAX_FLOWS = 65536 }; /* Maximum number of flows in flow table. */
73
856081f6 74/* Queues. */
856081f6
BP
75enum { MAX_QUEUE_LEN = 128 }; /* Maximum number of packets per queue. */
76enum { QUEUE_MASK = MAX_QUEUE_LEN - 1 };
77BUILD_ASSERT_DECL(IS_POW2(MAX_QUEUE_LEN));
78
8a4e3a85
BP
79/* Protects against changes to 'dp_netdevs'. */
80static struct ovs_mutex dp_netdev_mutex = OVS_MUTEX_INITIALIZER;
81
82/* Contains all 'struct dp_netdev's. */
83static struct shash dp_netdevs OVS_GUARDED_BY(dp_netdev_mutex)
84 = SHASH_INITIALIZER(&dp_netdevs);
85
d88b629b
BP
86struct dp_netdev_upcall {
87 struct dpif_upcall upcall; /* Queued upcall information. */
88 struct ofpbuf buf; /* ofpbuf instance for upcall.packet. */
89};
90
63be20be 91/* A queue passing packets from a struct dp_netdev to its clients (handlers).
8a4e3a85
BP
92 *
93 *
94 * Thread-safety
95 * =============
96 *
63be20be
AW
97 * Any access at all requires the owning 'dp_netdev''s queue_rwlock and
98 * its own mutex. */
856081f6 99struct dp_netdev_queue {
63be20be
AW
100 struct ovs_mutex mutex;
101 struct seq *seq; /* Incremented whenever a packet is queued. */
f5126b57
BP
102 struct dp_netdev_upcall upcalls[MAX_QUEUE_LEN] OVS_GUARDED;
103 unsigned int head OVS_GUARDED;
104 unsigned int tail OVS_GUARDED;
856081f6
BP
105};
106
8a4e3a85
BP
107/* Datapath based on the network device interface from netdev.h.
108 *
109 *
110 * Thread-safety
111 * =============
112 *
113 * Some members, marked 'const', are immutable. Accessing other members
114 * requires synchronization, as noted in more detail below.
115 *
116 * Acquisition order is, from outermost to innermost:
117 *
118 * dp_netdev_mutex (global)
119 * port_rwlock
120 * flow_mutex
121 * cls.rwlock
63be20be 122 * queue_rwlock
8a4e3a85 123 */
72865317 124struct dp_netdev {
8a4e3a85
BP
125 const struct dpif_class *const class;
126 const char *const name;
6a8267c5
BP
127 struct ovs_refcount ref_cnt;
128 atomic_flag destroyed;
72865317 129
8a4e3a85
BP
130 /* Flows.
131 *
132 * Readers of 'cls' and 'flow_table' must take a 'cls->rwlock' read lock.
133 *
134 * Writers of 'cls' and 'flow_table' must take the 'flow_mutex' and then
135 * the 'cls->rwlock' write lock. (The outer 'flow_mutex' allows writers to
136 * atomically perform multiple operations on 'cls' and 'flow_table'.)
137 */
138 struct ovs_mutex flow_mutex;
139 struct classifier cls; /* Classifier. Protected by cls.rwlock. */
140 struct hmap flow_table OVS_GUARDED; /* Flow table. */
141
142 /* Queues.
143 *
63be20be
AW
144 * 'queue_rwlock' protects the modification of 'handler_queues' and
145 * 'n_handlers'. The queue elements are protected by its
146 * 'handler_queues''s mutex. */
147 struct fat_rwlock queue_rwlock;
148 struct dp_netdev_queue *handler_queues;
149 uint32_t n_handlers;
72865317 150
8a4e3a85
BP
151 /* Statistics.
152 *
51852a57
BP
153 * ovsthread_stats is internally synchronized. */
154 struct ovsthread_stats stats; /* Contains 'struct dp_netdev_stats *'. */
72865317 155
8a4e3a85
BP
156 /* Ports.
157 *
158 * Any lookup into 'ports' or any access to the dp_netdev_ports found
159 * through 'ports' requires taking 'port_rwlock'. */
160 struct ovs_rwlock port_rwlock;
161 struct hmap ports OVS_GUARDED;
d33ed218 162 struct seq *port_seq; /* Incremented whenever a port changes. */
6c3eee82
BP
163
164 /* Forwarding threads. */
165 struct latch exit_latch;
e4cfed38
PS
166 struct pmd_thread *pmd_threads;
167 size_t n_pmd_threads;
168 int pmd_count;
72865317
BP
169};
170
8a4e3a85
BP
171static struct dp_netdev_port *dp_netdev_lookup_port(const struct dp_netdev *dp,
172 odp_port_t)
173 OVS_REQ_RDLOCK(dp->port_rwlock);
ff073a71 174
51852a57
BP
175enum dp_stat_type {
176 DP_STAT_HIT, /* Packets that matched in the flow table. */
177 DP_STAT_MISS, /* Packets that did not match. */
178 DP_STAT_LOST, /* Packets not passed up to the client. */
179 DP_N_STATS
180};
181
182/* Contained by struct dp_netdev's 'stats' member. */
183struct dp_netdev_stats {
184 struct ovs_mutex mutex; /* Protects 'n'. */
185
186 /* Indexed by DP_STAT_*, protected by 'mutex'. */
187 unsigned long long int n[DP_N_STATS] OVS_GUARDED;
188};
189
190
72865317
BP
191/* A port in a netdev-based datapath. */
192struct dp_netdev_port {
ff073a71
BP
193 struct hmap_node node; /* Node in dp_netdev's 'ports'. */
194 odp_port_t port_no;
72865317 195 struct netdev *netdev;
4b609110 196 struct netdev_saved_flags *sf;
55c955bd 197 struct netdev_rxq **rxq;
b284085e 198 struct ovs_refcount ref_cnt;
0cbfe35d 199 char *type; /* Port type as requested by user. */
72865317
BP
200};
201
8a4e3a85
BP
202/* A flow in dp_netdev's 'flow_table'.
203 *
204 *
205 * Thread-safety
206 * =============
207 *
208 * Except near the beginning or ending of its lifespan, rule 'rule' belongs to
209 * its dp_netdev's classifier. The text below calls this classifier 'cls'.
210 *
211 * Motivation
212 * ----------
213 *
214 * The thread safety rules described here for "struct dp_netdev_flow" are
215 * motivated by two goals:
216 *
217 * - Prevent threads that read members of "struct dp_netdev_flow" from
218 * reading bad data due to changes by some thread concurrently modifying
219 * those members.
220 *
221 * - Prevent two threads making changes to members of a given "struct
222 * dp_netdev_flow" from interfering with each other.
223 *
224 *
225 * Rules
226 * -----
227 *
228 * A flow 'flow' may be accessed without a risk of being freed by code that
229 * holds a read-lock or write-lock on 'cls->rwlock' or that owns a reference to
230 * 'flow->ref_cnt' (or both). Code that needs to hold onto a flow for a while
231 * should take 'cls->rwlock', find the flow it needs, increment 'flow->ref_cnt'
232 * with dpif_netdev_flow_ref(), and drop 'cls->rwlock'.
233 *
234 * 'flow->ref_cnt' protects 'flow' from being freed. It doesn't protect the
235 * flow from being deleted from 'cls' (that's 'cls->rwlock') and it doesn't
236 * protect members of 'flow' from modification (that's 'flow->mutex').
237 *
238 * 'flow->mutex' protects the members of 'flow' from modification. It doesn't
239 * protect the flow from being deleted from 'cls' (that's 'cls->rwlock') and it
240 * doesn't prevent the flow from being freed (that's 'flow->ref_cnt').
241 *
242 * Some members, marked 'const', are immutable. Accessing other members
243 * requires synchronization, as noted in more detail below.
244 */
72865317 245struct dp_netdev_flow {
2c0ea78f 246 /* Packet classification. */
8a4e3a85 247 const struct cls_rule cr; /* In owning dp_netdev's 'cls'. */
2c0ea78f 248
8a4e3a85
BP
249 /* Hash table index by unmasked flow. */
250 const struct hmap_node node; /* In owning dp_netdev's 'flow_table'. */
251 const struct flow flow; /* The flow that created this entry. */
72865317 252
8a4e3a85
BP
253 /* Protects members marked OVS_GUARDED.
254 *
255 * Acquire after datapath's flow_mutex. */
256 struct ovs_mutex mutex OVS_ACQ_AFTER(dp_netdev_mutex);
257
258 /* Statistics.
259 *
260 * Reading or writing these members requires 'mutex'. */
679ba04c 261 struct ovsthread_stats stats; /* Contains "struct dp_netdev_flow_stats". */
8a4e3a85
BP
262
263 /* Actions.
264 *
265 * Reading 'actions' requires 'mutex'.
266 * Writing 'actions' requires 'mutex' and (to allow for transactions) the
267 * datapath's flow_mutex. */
61e7deb1 268 OVSRCU_TYPE(struct dp_netdev_actions *) actions;
72865317
BP
269};
270
61e7deb1 271static void dp_netdev_flow_free(struct dp_netdev_flow *);
8a4e3a85 272
679ba04c
BP
273/* Contained by struct dp_netdev_flow's 'stats' member. */
274struct dp_netdev_flow_stats {
275 struct ovs_mutex mutex; /* Guards all the other members. */
276
277 long long int used OVS_GUARDED; /* Last used time, in monotonic msecs. */
278 long long int packet_count OVS_GUARDED; /* Number of packets matched. */
279 long long int byte_count OVS_GUARDED; /* Number of bytes matched. */
280 uint16_t tcp_flags OVS_GUARDED; /* Bitwise-OR of seen tcp_flags values. */
281};
282
a84cb64a
BP
283/* A set of datapath actions within a "struct dp_netdev_flow".
284 *
285 *
286 * Thread-safety
287 * =============
288 *
289 * A struct dp_netdev_actions 'actions' may be accessed without a risk of being
290 * freed by code that holds a read-lock or write-lock on 'flow->mutex' (where
291 * 'flow' is the dp_netdev_flow for which 'flow->actions == actions') or that
292 * owns a reference to 'actions->ref_cnt' (or both). */
293struct dp_netdev_actions {
a84cb64a
BP
294 /* These members are immutable: they do not change during the struct's
295 * lifetime. */
296 struct nlattr *actions; /* Sequence of OVS_ACTION_ATTR_* attributes. */
297 unsigned int size; /* Size of 'actions', in bytes. */
298};
299
300struct dp_netdev_actions *dp_netdev_actions_create(const struct nlattr *,
301 size_t);
61e7deb1
BP
302struct dp_netdev_actions *dp_netdev_flow_get_actions(
303 const struct dp_netdev_flow *);
304static void dp_netdev_actions_free(struct dp_netdev_actions *);
a84cb64a 305
e4cfed38
PS
306/* PMD: Poll modes drivers. PMD accesses devices via polling to eliminate
307 * the performance overhead of interrupt processing. Therefore netdev can
308 * not implement rx-wait for these devices. dpif-netdev needs to poll
309 * these device to check for recv buffer. pmd-thread does polling for
310 * devices assigned to itself thread.
311 *
312 * DPDK used PMD for accessing NIC.
313 *
314 * A thread that receives packets from PMD ports, looks them up in the flow
315 * table, and executes the actions it finds.
316 **/
317struct pmd_thread {
6c3eee82
BP
318 struct dp_netdev *dp;
319 pthread_t thread;
e4cfed38
PS
320 int id;
321 atomic_uint change_seq;
6c3eee82 322 char *name;
6c3eee82
BP
323};
324
72865317
BP
325/* Interface to netdev-based datapath. */
326struct dpif_netdev {
327 struct dpif dpif;
328 struct dp_netdev *dp;
d33ed218 329 uint64_t last_port_seq;
72865317
BP
330};
331
8a4e3a85
BP
332static int get_port_by_number(struct dp_netdev *dp, odp_port_t port_no,
333 struct dp_netdev_port **portp)
334 OVS_REQ_RDLOCK(dp->port_rwlock);
335static int get_port_by_name(struct dp_netdev *dp, const char *devname,
336 struct dp_netdev_port **portp)
337 OVS_REQ_RDLOCK(dp->port_rwlock);
338static void dp_netdev_free(struct dp_netdev *)
339 OVS_REQUIRES(dp_netdev_mutex);
72865317 340static void dp_netdev_flow_flush(struct dp_netdev *);
8a4e3a85
BP
341static int do_add_port(struct dp_netdev *dp, const char *devname,
342 const char *type, odp_port_t port_no)
343 OVS_REQ_WRLOCK(dp->port_rwlock);
344static int do_del_port(struct dp_netdev *dp, odp_port_t port_no)
345 OVS_REQ_WRLOCK(dp->port_rwlock);
63be20be
AW
346static void dp_netdev_destroy_all_queues(struct dp_netdev *dp)
347 OVS_REQ_WRLOCK(dp->queue_rwlock);
614c4892
BP
348static int dpif_netdev_open(const struct dpif_class *, const char *name,
349 bool create, struct dpif **);
f5126b57 350static int dp_netdev_output_userspace(struct dp_netdev *dp, struct ofpbuf *,
63be20be
AW
351 int queue_no, int type,
352 const struct flow *,
e4cfed38 353 const struct nlattr *userdata);
8a4e3a85 354static void dp_netdev_execute_actions(struct dp_netdev *dp,
df1e5a3b 355 const struct flow *, struct ofpbuf *, bool may_steal,
8a4e3a85 356 struct pkt_metadata *,
4edb9ae9 357 const struct nlattr *actions,
e4cfed38 358 size_t actions_len);
758c456d 359static void dp_netdev_port_input(struct dp_netdev *dp, struct ofpbuf *packet,
e4cfed38
PS
360 struct pkt_metadata *);
361
362static void dp_netdev_set_pmd_threads(struct dp_netdev *, int n);
72865317
BP
363
364static struct dpif_netdev *
365dpif_netdev_cast(const struct dpif *dpif)
366{
cb22974d 367 ovs_assert(dpif->dpif_class->open == dpif_netdev_open);
72865317
BP
368 return CONTAINER_OF(dpif, struct dpif_netdev, dpif);
369}
370
371static struct dp_netdev *
372get_dp_netdev(const struct dpif *dpif)
373{
374 return dpif_netdev_cast(dpif)->dp;
375}
376
2197d7ab
GL
377static int
378dpif_netdev_enumerate(struct sset *all_dps)
379{
380 struct shash_node *node;
381
97be1538 382 ovs_mutex_lock(&dp_netdev_mutex);
2197d7ab
GL
383 SHASH_FOR_EACH(node, &dp_netdevs) {
384 sset_add(all_dps, node->name);
385 }
97be1538 386 ovs_mutex_unlock(&dp_netdev_mutex);
5279f8fd 387
2197d7ab
GL
388 return 0;
389}
390
add90f6f
EJ
391static bool
392dpif_netdev_class_is_dummy(const struct dpif_class *class)
393{
394 return class != &dpif_netdev_class;
395}
396
0aeaabc8
JP
397static const char *
398dpif_netdev_port_open_type(const struct dpif_class *class, const char *type)
399{
400 return strcmp(type, "internal") ? type
add90f6f 401 : dpif_netdev_class_is_dummy(class) ? "dummy"
0aeaabc8
JP
402 : "tap";
403}
404
72865317
BP
405static struct dpif *
406create_dpif_netdev(struct dp_netdev *dp)
407{
462278db 408 uint16_t netflow_id = hash_string(dp->name, 0);
72865317 409 struct dpif_netdev *dpif;
72865317 410
6a8267c5 411 ovs_refcount_ref(&dp->ref_cnt);
72865317 412
72865317 413 dpif = xmalloc(sizeof *dpif);
614c4892 414 dpif_init(&dpif->dpif, dp->class, dp->name, netflow_id >> 8, netflow_id);
72865317 415 dpif->dp = dp;
d33ed218 416 dpif->last_port_seq = seq_read(dp->port_seq);
72865317
BP
417
418 return &dpif->dpif;
419}
420
4e022ec0
AW
421/* Choose an unused, non-zero port number and return it on success.
422 * Return ODPP_NONE on failure. */
423static odp_port_t
e44768b7 424choose_port(struct dp_netdev *dp, const char *name)
8a4e3a85 425 OVS_REQ_RDLOCK(dp->port_rwlock)
e44768b7 426{
4e022ec0 427 uint32_t port_no;
e44768b7
JP
428
429 if (dp->class != &dpif_netdev_class) {
430 const char *p;
431 int start_no = 0;
432
433 /* If the port name begins with "br", start the number search at
434 * 100 to make writing tests easier. */
435 if (!strncmp(name, "br", 2)) {
436 start_no = 100;
437 }
438
439 /* If the port name contains a number, try to assign that port number.
440 * This can make writing unit tests easier because port numbers are
441 * predictable. */
442 for (p = name; *p != '\0'; p++) {
443 if (isdigit((unsigned char) *p)) {
444 port_no = start_no + strtol(p, NULL, 10);
ff073a71
BP
445 if (port_no > 0 && port_no != odp_to_u32(ODPP_NONE)
446 && !dp_netdev_lookup_port(dp, u32_to_odp(port_no))) {
4e022ec0 447 return u32_to_odp(port_no);
e44768b7
JP
448 }
449 break;
450 }
451 }
452 }
453
ff073a71
BP
454 for (port_no = 1; port_no <= UINT16_MAX; port_no++) {
455 if (!dp_netdev_lookup_port(dp, u32_to_odp(port_no))) {
4e022ec0 456 return u32_to_odp(port_no);
e44768b7
JP
457 }
458 }
459
4e022ec0 460 return ODPP_NONE;
e44768b7
JP
461}
462
72865317 463static int
614c4892
BP
464create_dp_netdev(const char *name, const struct dpif_class *class,
465 struct dp_netdev **dpp)
8a4e3a85 466 OVS_REQUIRES(dp_netdev_mutex)
72865317
BP
467{
468 struct dp_netdev *dp;
469 int error;
72865317 470
462278db 471 dp = xzalloc(sizeof *dp);
8a4e3a85
BP
472 shash_add(&dp_netdevs, name, dp);
473
474 *CONST_CAST(const struct dpif_class **, &dp->class) = class;
475 *CONST_CAST(const char **, &dp->name) = xstrdup(name);
6a8267c5 476 ovs_refcount_init(&dp->ref_cnt);
1a65ba85 477 atomic_flag_clear(&dp->destroyed);
8a4e3a85
BP
478
479 ovs_mutex_init(&dp->flow_mutex);
480 classifier_init(&dp->cls, NULL);
481 hmap_init(&dp->flow_table);
482
63be20be 483 fat_rwlock_init(&dp->queue_rwlock);
ed27e010 484
51852a57 485 ovsthread_stats_init(&dp->stats);
ed27e010 486
8a4e3a85 487 ovs_rwlock_init(&dp->port_rwlock);
ff073a71 488 hmap_init(&dp->ports);
d33ed218 489 dp->port_seq = seq_create();
6c3eee82 490 latch_init(&dp->exit_latch);
e44768b7 491
8a4e3a85 492 ovs_rwlock_wrlock(&dp->port_rwlock);
4e022ec0 493 error = do_add_port(dp, name, "internal", ODPP_LOCAL);
8a4e3a85 494 ovs_rwlock_unlock(&dp->port_rwlock);
72865317
BP
495 if (error) {
496 dp_netdev_free(dp);
462278db 497 return error;
72865317
BP
498 }
499
462278db 500 *dpp = dp;
72865317
BP
501 return 0;
502}
503
504static int
614c4892 505dpif_netdev_open(const struct dpif_class *class, const char *name,
4a387741 506 bool create, struct dpif **dpifp)
72865317 507{
462278db 508 struct dp_netdev *dp;
5279f8fd 509 int error;
462278db 510
97be1538 511 ovs_mutex_lock(&dp_netdev_mutex);
462278db
BP
512 dp = shash_find_data(&dp_netdevs, name);
513 if (!dp) {
5279f8fd 514 error = create ? create_dp_netdev(name, class, &dp) : ENODEV;
72865317 515 } else {
5279f8fd
BP
516 error = (dp->class != class ? EINVAL
517 : create ? EEXIST
518 : 0);
519 }
520 if (!error) {
521 *dpifp = create_dpif_netdev(dp);
72865317 522 }
97be1538 523 ovs_mutex_unlock(&dp_netdev_mutex);
462278db 524
5279f8fd 525 return error;
72865317
BP
526}
527
528static void
1ba530f4 529dp_netdev_purge_queues(struct dp_netdev *dp)
63be20be 530 OVS_REQ_WRLOCK(dp->queue_rwlock)
72865317
BP
531{
532 int i;
533
63be20be
AW
534 for (i = 0; i < dp->n_handlers; i++) {
535 struct dp_netdev_queue *q = &dp->handler_queues[i];
856081f6 536
63be20be 537 ovs_mutex_lock(&q->mutex);
1ba530f4 538 while (q->tail != q->head) {
d88b629b 539 struct dp_netdev_upcall *u = &q->upcalls[q->tail++ & QUEUE_MASK];
da546e07 540 ofpbuf_uninit(&u->upcall.packet);
d88b629b 541 ofpbuf_uninit(&u->buf);
856081f6 542 }
63be20be 543 ovs_mutex_unlock(&q->mutex);
72865317 544 }
1ba530f4
BP
545}
546
8a4e3a85
BP
547/* Requires dp_netdev_mutex so that we can't get a new reference to 'dp'
548 * through the 'dp_netdevs' shash while freeing 'dp'. */
1ba530f4
BP
549static void
550dp_netdev_free(struct dp_netdev *dp)
8a4e3a85 551 OVS_REQUIRES(dp_netdev_mutex)
1ba530f4 552{
4ad28026 553 struct dp_netdev_port *port, *next;
51852a57
BP
554 struct dp_netdev_stats *bucket;
555 int i;
4ad28026 556
8a4e3a85
BP
557 shash_find_and_delete(&dp_netdevs, dp->name);
558
e4cfed38
PS
559 dp_netdev_set_pmd_threads(dp, 0);
560 free(dp->pmd_threads);
6c3eee82 561
1ba530f4 562 dp_netdev_flow_flush(dp);
8a4e3a85 563 ovs_rwlock_wrlock(&dp->port_rwlock);
ff073a71 564 HMAP_FOR_EACH_SAFE (port, next, node, &dp->ports) {
1ba530f4
BP
565 do_del_port(dp, port->port_no);
566 }
8a4e3a85 567 ovs_rwlock_unlock(&dp->port_rwlock);
51852a57
BP
568
569 OVSTHREAD_STATS_FOR_EACH_BUCKET (bucket, i, &dp->stats) {
570 ovs_mutex_destroy(&bucket->mutex);
571 free_cacheline(bucket);
572 }
573 ovsthread_stats_destroy(&dp->stats);
f5126b57 574
63be20be
AW
575 fat_rwlock_wrlock(&dp->queue_rwlock);
576 dp_netdev_destroy_all_queues(dp);
577 fat_rwlock_unlock(&dp->queue_rwlock);
578
579 fat_rwlock_destroy(&dp->queue_rwlock);
f5126b57 580
2c0ea78f 581 classifier_destroy(&dp->cls);
72865317 582 hmap_destroy(&dp->flow_table);
8a4e3a85 583 ovs_mutex_destroy(&dp->flow_mutex);
d33ed218 584 seq_destroy(dp->port_seq);
ff073a71 585 hmap_destroy(&dp->ports);
6c3eee82 586 latch_destroy(&dp->exit_latch);
8a4e3a85 587 free(CONST_CAST(char *, dp->name));
72865317
BP
588 free(dp);
589}
590
8a4e3a85
BP
591static void
592dp_netdev_unref(struct dp_netdev *dp)
593{
594 if (dp) {
595 /* Take dp_netdev_mutex so that, if dp->ref_cnt falls to zero, we can't
596 * get a new reference to 'dp' through the 'dp_netdevs' shash. */
597 ovs_mutex_lock(&dp_netdev_mutex);
598 if (ovs_refcount_unref(&dp->ref_cnt) == 1) {
599 dp_netdev_free(dp);
600 }
601 ovs_mutex_unlock(&dp_netdev_mutex);
602 }
603}
604
72865317
BP
605static void
606dpif_netdev_close(struct dpif *dpif)
607{
608 struct dp_netdev *dp = get_dp_netdev(dpif);
5279f8fd 609
8a4e3a85 610 dp_netdev_unref(dp);
72865317
BP
611 free(dpif);
612}
613
614static int
7dab847a 615dpif_netdev_destroy(struct dpif *dpif)
72865317
BP
616{
617 struct dp_netdev *dp = get_dp_netdev(dpif);
5279f8fd 618
6a8267c5
BP
619 if (!atomic_flag_test_and_set(&dp->destroyed)) {
620 if (ovs_refcount_unref(&dp->ref_cnt) == 1) {
621 /* Can't happen: 'dpif' still owns a reference to 'dp'. */
622 OVS_NOT_REACHED();
623 }
624 }
5279f8fd 625
72865317
BP
626 return 0;
627}
628
629static int
a8d9304d 630dpif_netdev_get_stats(const struct dpif *dpif, struct dpif_dp_stats *stats)
72865317
BP
631{
632 struct dp_netdev *dp = get_dp_netdev(dpif);
51852a57
BP
633 struct dp_netdev_stats *bucket;
634 size_t i;
5279f8fd 635
06f81620 636 fat_rwlock_rdlock(&dp->cls.rwlock);
f180c2e2 637 stats->n_flows = hmap_count(&dp->flow_table);
06f81620 638 fat_rwlock_unlock(&dp->cls.rwlock);
8a4e3a85 639
51852a57
BP
640 stats->n_hit = stats->n_missed = stats->n_lost = 0;
641 OVSTHREAD_STATS_FOR_EACH_BUCKET (bucket, i, &dp->stats) {
642 ovs_mutex_lock(&bucket->mutex);
643 stats->n_hit += bucket->n[DP_STAT_HIT];
644 stats->n_missed += bucket->n[DP_STAT_MISS];
645 stats->n_lost += bucket->n[DP_STAT_LOST];
646 ovs_mutex_unlock(&bucket->mutex);
647 }
1ce3fa06 648 stats->n_masks = UINT32_MAX;
847108dc 649 stats->n_mask_hit = UINT64_MAX;
5279f8fd 650
72865317
BP
651 return 0;
652}
653
e4cfed38
PS
654static void
655dp_netdev_reload_pmd_threads(struct dp_netdev *dp)
656{
657 int i;
658
659 for (i = 0; i < dp->n_pmd_threads; i++) {
660 struct pmd_thread *f = &dp->pmd_threads[i];
661 int id;
662
663 atomic_add(&f->change_seq, 1, &id);
664 }
665}
666
72865317 667static int
c3827f61 668do_add_port(struct dp_netdev *dp, const char *devname, const char *type,
4e022ec0 669 odp_port_t port_no)
8a4e3a85 670 OVS_REQ_WRLOCK(dp->port_rwlock)
72865317 671{
4b609110 672 struct netdev_saved_flags *sf;
72865317
BP
673 struct dp_netdev_port *port;
674 struct netdev *netdev;
2499a8ce 675 enum netdev_flags flags;
0cbfe35d 676 const char *open_type;
72865317 677 int error;
55c955bd 678 int i;
72865317
BP
679
680 /* XXX reject devices already in some dp_netdev. */
681
682 /* Open and validate network device. */
0aeaabc8 683 open_type = dpif_netdev_port_open_type(dp->class, type);
0cbfe35d 684 error = netdev_open(devname, open_type, &netdev);
72865317
BP
685 if (error) {
686 return error;
687 }
72865317
BP
688 /* XXX reject non-Ethernet devices */
689
2499a8ce
AC
690 netdev_get_flags(netdev, &flags);
691 if (flags & NETDEV_LOOPBACK) {
692 VLOG_ERR("%s: cannot add a loopback device", devname);
693 netdev_close(netdev);
694 return EINVAL;
695 }
696
e4cfed38
PS
697 port = xzalloc(sizeof *port);
698 port->port_no = port_no;
699 port->netdev = netdev;
55c955bd 700 port->rxq = xmalloc(sizeof *port->rxq * netdev_n_rxq(netdev));
e4cfed38 701 port->type = xstrdup(type);
55c955bd
PS
702 for (i = 0; i < netdev_n_rxq(netdev); i++) {
703 error = netdev_rxq_open(netdev, &port->rxq[i], i);
704 if (error
705 && !(error == EOPNOTSUPP && dpif_netdev_class_is_dummy(dp->class))) {
706 VLOG_ERR("%s: cannot receive packets on this network device (%s)",
707 devname, ovs_strerror(errno));
708 netdev_close(netdev);
709 return error;
710 }
7b6b0ef4
BP
711 }
712
4b609110 713 error = netdev_turn_flags_on(netdev, NETDEV_PROMISC, &sf);
72865317 714 if (error) {
55c955bd
PS
715 for (i = 0; i < netdev_n_rxq(netdev); i++) {
716 netdev_rxq_close(port->rxq[i]);
717 }
72865317 718 netdev_close(netdev);
f7791740 719 free(port->rxq);
e4cfed38 720 free(port);
72865317
BP
721 return error;
722 }
4b609110 723 port->sf = sf;
e4cfed38
PS
724
725 if (netdev_is_pmd(netdev)) {
726 dp->pmd_count++;
727 dp_netdev_set_pmd_threads(dp, NR_THREADS);
728 dp_netdev_reload_pmd_threads(dp);
729 }
730 ovs_refcount_init(&port->ref_cnt);
72865317 731
ff073a71 732 hmap_insert(&dp->ports, &port->node, hash_int(odp_to_u32(port_no), 0));
d33ed218 733 seq_change(dp->port_seq);
72865317
BP
734
735 return 0;
736}
737
247527db
BP
738static int
739dpif_netdev_port_add(struct dpif *dpif, struct netdev *netdev,
4e022ec0 740 odp_port_t *port_nop)
247527db
BP
741{
742 struct dp_netdev *dp = get_dp_netdev(dpif);
3aa30359
BP
743 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
744 const char *dpif_port;
4e022ec0 745 odp_port_t port_no;
5279f8fd 746 int error;
247527db 747
8a4e3a85 748 ovs_rwlock_wrlock(&dp->port_rwlock);
3aa30359 749 dpif_port = netdev_vport_get_dpif_port(netdev, namebuf, sizeof namebuf);
4e022ec0 750 if (*port_nop != ODPP_NONE) {
ff073a71
BP
751 port_no = *port_nop;
752 error = dp_netdev_lookup_port(dp, *port_nop) ? EBUSY : 0;
232dfa4a 753 } else {
3aa30359 754 port_no = choose_port(dp, dpif_port);
5279f8fd 755 error = port_no == ODPP_NONE ? EFBIG : 0;
232dfa4a 756 }
5279f8fd 757 if (!error) {
247527db 758 *port_nop = port_no;
5279f8fd 759 error = do_add_port(dp, dpif_port, netdev_get_type(netdev), port_no);
247527db 760 }
8a4e3a85 761 ovs_rwlock_unlock(&dp->port_rwlock);
5279f8fd
BP
762
763 return error;
72865317
BP
764}
765
766static int
4e022ec0 767dpif_netdev_port_del(struct dpif *dpif, odp_port_t port_no)
72865317
BP
768{
769 struct dp_netdev *dp = get_dp_netdev(dpif);
5279f8fd
BP
770 int error;
771
8a4e3a85 772 ovs_rwlock_wrlock(&dp->port_rwlock);
5279f8fd 773 error = port_no == ODPP_LOCAL ? EINVAL : do_del_port(dp, port_no);
8a4e3a85 774 ovs_rwlock_unlock(&dp->port_rwlock);
5279f8fd
BP
775
776 return error;
72865317
BP
777}
778
779static bool
4e022ec0 780is_valid_port_number(odp_port_t port_no)
72865317 781{
ff073a71
BP
782 return port_no != ODPP_NONE;
783}
784
785static struct dp_netdev_port *
786dp_netdev_lookup_port(const struct dp_netdev *dp, odp_port_t port_no)
8a4e3a85 787 OVS_REQ_RDLOCK(dp->port_rwlock)
ff073a71
BP
788{
789 struct dp_netdev_port *port;
790
791 HMAP_FOR_EACH_IN_BUCKET (port, node, hash_int(odp_to_u32(port_no), 0),
792 &dp->ports) {
793 if (port->port_no == port_no) {
794 return port;
795 }
796 }
797 return NULL;
72865317
BP
798}
799
800static int
801get_port_by_number(struct dp_netdev *dp,
4e022ec0 802 odp_port_t port_no, struct dp_netdev_port **portp)
8a4e3a85 803 OVS_REQ_RDLOCK(dp->port_rwlock)
72865317
BP
804{
805 if (!is_valid_port_number(port_no)) {
806 *portp = NULL;
807 return EINVAL;
808 } else {
ff073a71 809 *portp = dp_netdev_lookup_port(dp, port_no);
72865317
BP
810 return *portp ? 0 : ENOENT;
811 }
812}
813
b284085e
PS
814static void
815port_ref(struct dp_netdev_port *port)
816{
817 if (port) {
818 ovs_refcount_ref(&port->ref_cnt);
819 }
820}
821
822static void
823port_unref(struct dp_netdev_port *port)
824{
825 if (port && ovs_refcount_unref(&port->ref_cnt) == 1) {
55c955bd
PS
826 int i;
827
b284085e
PS
828 netdev_close(port->netdev);
829 netdev_restore_flags(port->sf);
55c955bd
PS
830
831 for (i = 0; i < netdev_n_rxq(port->netdev); i++) {
832 netdev_rxq_close(port->rxq[i]);
833 }
b284085e
PS
834 free(port->type);
835 free(port);
836 }
837}
838
72865317
BP
839static int
840get_port_by_name(struct dp_netdev *dp,
841 const char *devname, struct dp_netdev_port **portp)
8a4e3a85 842 OVS_REQ_RDLOCK(dp->port_rwlock)
72865317
BP
843{
844 struct dp_netdev_port *port;
845
ff073a71 846 HMAP_FOR_EACH (port, node, &dp->ports) {
3efb6063 847 if (!strcmp(netdev_get_name(port->netdev), devname)) {
72865317
BP
848 *portp = port;
849 return 0;
850 }
851 }
852 return ENOENT;
853}
854
855static int
4e022ec0 856do_del_port(struct dp_netdev *dp, odp_port_t port_no)
8a4e3a85 857 OVS_REQ_WRLOCK(dp->port_rwlock)
72865317
BP
858{
859 struct dp_netdev_port *port;
860 int error;
861
862 error = get_port_by_number(dp, port_no, &port);
863 if (error) {
864 return error;
865 }
866
ff073a71 867 hmap_remove(&dp->ports, &port->node);
d33ed218 868 seq_change(dp->port_seq);
e4cfed38
PS
869 if (netdev_is_pmd(port->netdev)) {
870 dp_netdev_reload_pmd_threads(dp);
871 }
72865317 872
b284085e 873 port_unref(port);
72865317
BP
874 return 0;
875}
876
877static void
4c738a8d
BP
878answer_port_query(const struct dp_netdev_port *port,
879 struct dpif_port *dpif_port)
72865317 880{
3efb6063 881 dpif_port->name = xstrdup(netdev_get_name(port->netdev));
0cbfe35d 882 dpif_port->type = xstrdup(port->type);
4c738a8d 883 dpif_port->port_no = port->port_no;
72865317
BP
884}
885
886static int
4e022ec0 887dpif_netdev_port_query_by_number(const struct dpif *dpif, odp_port_t port_no,
4c738a8d 888 struct dpif_port *dpif_port)
72865317
BP
889{
890 struct dp_netdev *dp = get_dp_netdev(dpif);
891 struct dp_netdev_port *port;
892 int error;
893
8a4e3a85 894 ovs_rwlock_rdlock(&dp->port_rwlock);
72865317 895 error = get_port_by_number(dp, port_no, &port);
4afba28d 896 if (!error && dpif_port) {
4c738a8d 897 answer_port_query(port, dpif_port);
72865317 898 }
8a4e3a85 899 ovs_rwlock_unlock(&dp->port_rwlock);
5279f8fd 900
72865317
BP
901 return error;
902}
903
904static int
905dpif_netdev_port_query_by_name(const struct dpif *dpif, const char *devname,
4c738a8d 906 struct dpif_port *dpif_port)
72865317
BP
907{
908 struct dp_netdev *dp = get_dp_netdev(dpif);
909 struct dp_netdev_port *port;
910 int error;
911
8a4e3a85 912 ovs_rwlock_rdlock(&dp->port_rwlock);
72865317 913 error = get_port_by_name(dp, devname, &port);
4afba28d 914 if (!error && dpif_port) {
4c738a8d 915 answer_port_query(port, dpif_port);
72865317 916 }
8a4e3a85 917 ovs_rwlock_unlock(&dp->port_rwlock);
5279f8fd 918
72865317
BP
919 return error;
920}
921
61e7deb1
BP
922static void
923dp_netdev_flow_free(struct dp_netdev_flow *flow)
924{
925 struct dp_netdev_flow_stats *bucket;
926 size_t i;
927
928 OVSTHREAD_STATS_FOR_EACH_BUCKET (bucket, i, &flow->stats) {
929 ovs_mutex_destroy(&bucket->mutex);
930 free_cacheline(bucket);
931 }
932 ovsthread_stats_destroy(&flow->stats);
933
934 cls_rule_destroy(CONST_CAST(struct cls_rule *, &flow->cr));
935 dp_netdev_actions_free(dp_netdev_flow_get_actions(flow));
936 ovs_mutex_destroy(&flow->mutex);
937 free(flow);
938}
939
72865317 940static void
8a4e3a85
BP
941dp_netdev_remove_flow(struct dp_netdev *dp, struct dp_netdev_flow *flow)
942 OVS_REQ_WRLOCK(dp->cls.rwlock)
943 OVS_REQUIRES(dp->flow_mutex)
72865317 944{
8a4e3a85
BP
945 struct cls_rule *cr = CONST_CAST(struct cls_rule *, &flow->cr);
946 struct hmap_node *node = CONST_CAST(struct hmap_node *, &flow->node);
2c0ea78f 947
8a4e3a85
BP
948 classifier_remove(&dp->cls, cr);
949 hmap_remove(&dp->flow_table, node);
61e7deb1 950 ovsrcu_postpone(dp_netdev_flow_free, flow);
72865317
BP
951}
952
953static void
954dp_netdev_flow_flush(struct dp_netdev *dp)
955{
1763b4b8 956 struct dp_netdev_flow *netdev_flow, *next;
72865317 957
8a4e3a85 958 ovs_mutex_lock(&dp->flow_mutex);
06f81620 959 fat_rwlock_wrlock(&dp->cls.rwlock);
1763b4b8 960 HMAP_FOR_EACH_SAFE (netdev_flow, next, node, &dp->flow_table) {
8a4e3a85 961 dp_netdev_remove_flow(dp, netdev_flow);
72865317 962 }
06f81620 963 fat_rwlock_unlock(&dp->cls.rwlock);
8a4e3a85 964 ovs_mutex_unlock(&dp->flow_mutex);
72865317
BP
965}
966
967static int
968dpif_netdev_flow_flush(struct dpif *dpif)
969{
970 struct dp_netdev *dp = get_dp_netdev(dpif);
5279f8fd 971
72865317
BP
972 dp_netdev_flow_flush(dp);
973 return 0;
974}
975
b0ec0f27 976struct dp_netdev_port_state {
ff073a71
BP
977 uint32_t bucket;
978 uint32_t offset;
4c738a8d 979 char *name;
b0ec0f27
BP
980};
981
982static int
983dpif_netdev_port_dump_start(const struct dpif *dpif OVS_UNUSED, void **statep)
984{
985 *statep = xzalloc(sizeof(struct dp_netdev_port_state));
986 return 0;
987}
988
72865317 989static int
b0ec0f27 990dpif_netdev_port_dump_next(const struct dpif *dpif, void *state_,
4c738a8d 991 struct dpif_port *dpif_port)
72865317 992{
b0ec0f27 993 struct dp_netdev_port_state *state = state_;
72865317 994 struct dp_netdev *dp = get_dp_netdev(dpif);
ff073a71
BP
995 struct hmap_node *node;
996 int retval;
72865317 997
8a4e3a85 998 ovs_rwlock_rdlock(&dp->port_rwlock);
ff073a71
BP
999 node = hmap_at_position(&dp->ports, &state->bucket, &state->offset);
1000 if (node) {
1001 struct dp_netdev_port *port;
5279f8fd 1002
ff073a71
BP
1003 port = CONTAINER_OF(node, struct dp_netdev_port, node);
1004
1005 free(state->name);
1006 state->name = xstrdup(netdev_get_name(port->netdev));
1007 dpif_port->name = state->name;
1008 dpif_port->type = port->type;
1009 dpif_port->port_no = port->port_no;
1010
1011 retval = 0;
1012 } else {
1013 retval = EOF;
72865317 1014 }
8a4e3a85 1015 ovs_rwlock_unlock(&dp->port_rwlock);
5279f8fd 1016
ff073a71 1017 return retval;
b0ec0f27
BP
1018}
1019
1020static int
4c738a8d 1021dpif_netdev_port_dump_done(const struct dpif *dpif OVS_UNUSED, void *state_)
b0ec0f27 1022{
4c738a8d
BP
1023 struct dp_netdev_port_state *state = state_;
1024 free(state->name);
b0ec0f27
BP
1025 free(state);
1026 return 0;
72865317
BP
1027}
1028
1029static int
67a4917b 1030dpif_netdev_port_poll(const struct dpif *dpif_, char **devnamep OVS_UNUSED)
72865317
BP
1031{
1032 struct dpif_netdev *dpif = dpif_netdev_cast(dpif_);
d33ed218 1033 uint64_t new_port_seq;
5279f8fd
BP
1034 int error;
1035
d33ed218
BP
1036 new_port_seq = seq_read(dpif->dp->port_seq);
1037 if (dpif->last_port_seq != new_port_seq) {
1038 dpif->last_port_seq = new_port_seq;
5279f8fd 1039 error = ENOBUFS;
72865317 1040 } else {
5279f8fd 1041 error = EAGAIN;
72865317 1042 }
5279f8fd
BP
1043
1044 return error;
72865317
BP
1045}
1046
1047static void
1048dpif_netdev_port_poll_wait(const struct dpif *dpif_)
1049{
1050 struct dpif_netdev *dpif = dpif_netdev_cast(dpif_);
5279f8fd 1051
d33ed218 1052 seq_wait(dpif->dp->port_seq, dpif->last_port_seq);
8a4e3a85
BP
1053}
1054
1055static struct dp_netdev_flow *
1056dp_netdev_flow_cast(const struct cls_rule *cr)
1057{
1058 return cr ? CONTAINER_OF(cr, struct dp_netdev_flow, cr) : NULL;
72865317
BP
1059}
1060
72865317 1061static struct dp_netdev_flow *
2c0ea78f 1062dp_netdev_lookup_flow(const struct dp_netdev *dp, const struct flow *flow)
8a4e3a85 1063 OVS_EXCLUDED(dp->cls.rwlock)
2c0ea78f 1064{
8a4e3a85 1065 struct dp_netdev_flow *netdev_flow;
2c0ea78f 1066
06f81620 1067 fat_rwlock_rdlock(&dp->cls.rwlock);
8a4e3a85 1068 netdev_flow = dp_netdev_flow_cast(classifier_lookup(&dp->cls, flow, NULL));
06f81620 1069 fat_rwlock_unlock(&dp->cls.rwlock);
2c0ea78f 1070
8a4e3a85 1071 return netdev_flow;
2c0ea78f
GS
1072}
1073
1074static struct dp_netdev_flow *
1075dp_netdev_find_flow(const struct dp_netdev *dp, const struct flow *flow)
8a4e3a85 1076 OVS_REQ_RDLOCK(dp->cls.rwlock)
72865317 1077{
1763b4b8 1078 struct dp_netdev_flow *netdev_flow;
72865317 1079
2c0ea78f 1080 HMAP_FOR_EACH_WITH_HASH (netdev_flow, node, flow_hash(flow, 0),
1763b4b8 1081 &dp->flow_table) {
2c0ea78f 1082 if (flow_equal(&netdev_flow->flow, flow)) {
61e7deb1 1083 return netdev_flow;
72865317
BP
1084 }
1085 }
8a4e3a85 1086
72865317
BP
1087 return NULL;
1088}
1089
1090static void
1763b4b8
GS
1091get_dpif_flow_stats(struct dp_netdev_flow *netdev_flow,
1092 struct dpif_flow_stats *stats)
feebdea2 1093{
679ba04c
BP
1094 struct dp_netdev_flow_stats *bucket;
1095 size_t i;
1096
1097 memset(stats, 0, sizeof *stats);
1098 OVSTHREAD_STATS_FOR_EACH_BUCKET (bucket, i, &netdev_flow->stats) {
1099 ovs_mutex_lock(&bucket->mutex);
1100 stats->n_packets += bucket->packet_count;
1101 stats->n_bytes += bucket->byte_count;
1102 stats->used = MAX(stats->used, bucket->used);
1103 stats->tcp_flags |= bucket->tcp_flags;
1104 ovs_mutex_unlock(&bucket->mutex);
1105 }
72865317
BP
1106}
1107
36956a7d 1108static int
8c301900
JR
1109dpif_netdev_mask_from_nlattrs(const struct nlattr *key, uint32_t key_len,
1110 const struct nlattr *mask_key,
1111 uint32_t mask_key_len, const struct flow *flow,
1112 struct flow *mask)
1113{
1114 if (mask_key_len) {
80e44883
BP
1115 enum odp_key_fitness fitness;
1116
1117 fitness = odp_flow_key_to_mask(mask_key, mask_key_len, mask, flow);
1118 if (fitness) {
8c301900
JR
1119 /* This should not happen: it indicates that
1120 * odp_flow_key_from_mask() and odp_flow_key_to_mask()
1121 * disagree on the acceptable form of a mask. Log the problem
1122 * as an error, with enough details to enable debugging. */
1123 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1124
1125 if (!VLOG_DROP_ERR(&rl)) {
1126 struct ds s;
1127
1128 ds_init(&s);
1129 odp_flow_format(key, key_len, mask_key, mask_key_len, NULL, &s,
1130 true);
80e44883
BP
1131 VLOG_ERR("internal error parsing flow mask %s (%s)",
1132 ds_cstr(&s), odp_key_fitness_to_string(fitness));
8c301900
JR
1133 ds_destroy(&s);
1134 }
1135
1136 return EINVAL;
1137 }
1138 /* Force unwildcard the in_port. */
1139 mask->in_port.odp_port = u32_to_odp(UINT32_MAX);
1140 } else {
1141 enum mf_field_id id;
1142 /* No mask key, unwildcard everything except fields whose
1143 * prerequisities are not met. */
1144 memset(mask, 0x0, sizeof *mask);
1145
1146 for (id = 0; id < MFF_N_IDS; ++id) {
1147 /* Skip registers and metadata. */
1148 if (!(id >= MFF_REG0 && id < MFF_REG0 + FLOW_N_REGS)
1149 && id != MFF_METADATA) {
1150 const struct mf_field *mf = mf_from_id(id);
1151 if (mf_are_prereqs_ok(mf, flow)) {
1152 mf_mask_field(mf, mask);
1153 }
1154 }
1155 }
1156 }
1157
1158 return 0;
1159}
1160
1161static int
1162dpif_netdev_flow_from_nlattrs(const struct nlattr *key, uint32_t key_len,
1163 struct flow *flow)
36956a7d 1164{
586ddea5
BP
1165 odp_port_t in_port;
1166
8c301900 1167 if (odp_flow_key_to_flow(key, key_len, flow)) {
36956a7d 1168 /* This should not happen: it indicates that odp_flow_key_from_flow()
8c301900
JR
1169 * and odp_flow_key_to_flow() disagree on the acceptable form of a
1170 * flow. Log the problem as an error, with enough details to enable
1171 * debugging. */
36956a7d
BP
1172 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1173
1174 if (!VLOG_DROP_ERR(&rl)) {
1175 struct ds s;
1176
1177 ds_init(&s);
8c301900 1178 odp_flow_format(key, key_len, NULL, 0, NULL, &s, true);
36956a7d
BP
1179 VLOG_ERR("internal error parsing flow key %s", ds_cstr(&s));
1180 ds_destroy(&s);
1181 }
1182
1183 return EINVAL;
1184 }
1185
586ddea5
BP
1186 in_port = flow->in_port.odp_port;
1187 if (!is_valid_port_number(in_port) && in_port != ODPP_NONE) {
18886b60
BP
1188 return EINVAL;
1189 }
1190
36956a7d
BP
1191 return 0;
1192}
1193
72865317 1194static int
693c4a01 1195dpif_netdev_flow_get(const struct dpif *dpif,
feebdea2 1196 const struct nlattr *nl_key, size_t nl_key_len,
c97fb132 1197 struct ofpbuf **actionsp, struct dpif_flow_stats *stats)
72865317
BP
1198{
1199 struct dp_netdev *dp = get_dp_netdev(dpif);
1763b4b8 1200 struct dp_netdev_flow *netdev_flow;
bc4a05c6
BP
1201 struct flow key;
1202 int error;
36956a7d 1203
feebdea2 1204 error = dpif_netdev_flow_from_nlattrs(nl_key, nl_key_len, &key);
bc4a05c6
BP
1205 if (error) {
1206 return error;
1207 }
14608a15 1208
06f81620 1209 fat_rwlock_rdlock(&dp->cls.rwlock);
2c0ea78f 1210 netdev_flow = dp_netdev_find_flow(dp, &key);
06f81620 1211 fat_rwlock_unlock(&dp->cls.rwlock);
8a4e3a85 1212
1763b4b8 1213 if (netdev_flow) {
5279f8fd 1214 if (stats) {
1763b4b8 1215 get_dpif_flow_stats(netdev_flow, stats);
5279f8fd 1216 }
679ba04c 1217
5279f8fd 1218 if (actionsp) {
61e7deb1 1219 struct dp_netdev_actions *actions;
8a4e3a85 1220
61e7deb1 1221 actions = dp_netdev_flow_get_actions(netdev_flow);
8a4e3a85 1222 *actionsp = ofpbuf_clone_data(actions->actions, actions->size);
5279f8fd 1223 }
61e7deb1 1224 } else {
5279f8fd 1225 error = ENOENT;
72865317 1226 }
bc4a05c6 1227
5279f8fd 1228 return error;
72865317
BP
1229}
1230
72865317 1231static int
2c0ea78f
GS
1232dp_netdev_flow_add(struct dp_netdev *dp, const struct flow *flow,
1233 const struct flow_wildcards *wc,
1234 const struct nlattr *actions,
1235 size_t actions_len)
8a4e3a85 1236 OVS_REQUIRES(dp->flow_mutex)
72865317 1237{
1763b4b8 1238 struct dp_netdev_flow *netdev_flow;
2c0ea78f 1239 struct match match;
72865317 1240
1763b4b8 1241 netdev_flow = xzalloc(sizeof *netdev_flow);
8a4e3a85 1242 *CONST_CAST(struct flow *, &netdev_flow->flow) = *flow;
8a4e3a85
BP
1243
1244 ovs_mutex_init(&netdev_flow->mutex);
8a4e3a85 1245
679ba04c
BP
1246 ovsthread_stats_init(&netdev_flow->stats);
1247
61e7deb1
BP
1248 ovsrcu_set(&netdev_flow->actions,
1249 dp_netdev_actions_create(actions, actions_len));
2c0ea78f
GS
1250
1251 match_init(&match, flow, wc);
8a4e3a85
BP
1252 cls_rule_init(CONST_CAST(struct cls_rule *, &netdev_flow->cr),
1253 &match, NETDEV_RULE_PRIORITY);
06f81620 1254 fat_rwlock_wrlock(&dp->cls.rwlock);
8a4e3a85
BP
1255 classifier_insert(&dp->cls,
1256 CONST_CAST(struct cls_rule *, &netdev_flow->cr));
1257 hmap_insert(&dp->flow_table,
1258 CONST_CAST(struct hmap_node *, &netdev_flow->node),
1259 flow_hash(flow, 0));
06f81620 1260 fat_rwlock_unlock(&dp->cls.rwlock);
72865317 1261
72865317
BP
1262 return 0;
1263}
1264
1265static void
1763b4b8 1266clear_stats(struct dp_netdev_flow *netdev_flow)
72865317 1267{
679ba04c
BP
1268 struct dp_netdev_flow_stats *bucket;
1269 size_t i;
1270
1271 OVSTHREAD_STATS_FOR_EACH_BUCKET (bucket, i, &netdev_flow->stats) {
1272 ovs_mutex_lock(&bucket->mutex);
1273 bucket->used = 0;
1274 bucket->packet_count = 0;
1275 bucket->byte_count = 0;
1276 bucket->tcp_flags = 0;
1277 ovs_mutex_unlock(&bucket->mutex);
1278 }
72865317
BP
1279}
1280
1281static int
89625d1e 1282dpif_netdev_flow_put(struct dpif *dpif, const struct dpif_flow_put *put)
72865317
BP
1283{
1284 struct dp_netdev *dp = get_dp_netdev(dpif);
1763b4b8 1285 struct dp_netdev_flow *netdev_flow;
2c0ea78f
GS
1286 struct flow flow;
1287 struct flow_wildcards wc;
36956a7d
BP
1288 int error;
1289
8c301900
JR
1290 error = dpif_netdev_flow_from_nlattrs(put->key, put->key_len, &flow);
1291 if (error) {
1292 return error;
1293 }
1294 error = dpif_netdev_mask_from_nlattrs(put->key, put->key_len,
1295 put->mask, put->mask_len,
1296 &flow, &wc.masks);
36956a7d
BP
1297 if (error) {
1298 return error;
1299 }
72865317 1300
8a4e3a85 1301 ovs_mutex_lock(&dp->flow_mutex);
2c0ea78f 1302 netdev_flow = dp_netdev_lookup_flow(dp, &flow);
1763b4b8 1303 if (!netdev_flow) {
89625d1e 1304 if (put->flags & DPIF_FP_CREATE) {
72865317 1305 if (hmap_count(&dp->flow_table) < MAX_FLOWS) {
89625d1e
BP
1306 if (put->stats) {
1307 memset(put->stats, 0, sizeof *put->stats);
feebdea2 1308 }
2c0ea78f 1309 error = dp_netdev_flow_add(dp, &flow, &wc, put->actions,
5279f8fd 1310 put->actions_len);
72865317 1311 } else {
5279f8fd 1312 error = EFBIG;
72865317
BP
1313 }
1314 } else {
5279f8fd 1315 error = ENOENT;
72865317
BP
1316 }
1317 } else {
2c0ea78f
GS
1318 if (put->flags & DPIF_FP_MODIFY
1319 && flow_equal(&flow, &netdev_flow->flow)) {
8a4e3a85
BP
1320 struct dp_netdev_actions *new_actions;
1321 struct dp_netdev_actions *old_actions;
1322
1323 new_actions = dp_netdev_actions_create(put->actions,
1324 put->actions_len);
1325
61e7deb1
BP
1326 old_actions = dp_netdev_flow_get_actions(netdev_flow);
1327 ovsrcu_set(&netdev_flow->actions, new_actions);
679ba04c 1328
a84cb64a
BP
1329 if (put->stats) {
1330 get_dpif_flow_stats(netdev_flow, put->stats);
1331 }
1332 if (put->flags & DPIF_FP_ZERO_STATS) {
1333 clear_stats(netdev_flow);
72865317 1334 }
8a4e3a85 1335
61e7deb1 1336 ovsrcu_postpone(dp_netdev_actions_free, old_actions);
2c0ea78f 1337 } else if (put->flags & DPIF_FP_CREATE) {
5279f8fd 1338 error = EEXIST;
2c0ea78f
GS
1339 } else {
1340 /* Overlapping flow. */
1341 error = EINVAL;
72865317
BP
1342 }
1343 }
8a4e3a85 1344 ovs_mutex_unlock(&dp->flow_mutex);
5279f8fd
BP
1345
1346 return error;
72865317
BP
1347}
1348
72865317 1349static int
b99d3cee 1350dpif_netdev_flow_del(struct dpif *dpif, const struct dpif_flow_del *del)
72865317
BP
1351{
1352 struct dp_netdev *dp = get_dp_netdev(dpif);
1763b4b8 1353 struct dp_netdev_flow *netdev_flow;
14608a15 1354 struct flow key;
36956a7d
BP
1355 int error;
1356
b99d3cee 1357 error = dpif_netdev_flow_from_nlattrs(del->key, del->key_len, &key);
36956a7d
BP
1358 if (error) {
1359 return error;
1360 }
72865317 1361
8a4e3a85 1362 ovs_mutex_lock(&dp->flow_mutex);
06f81620 1363 fat_rwlock_wrlock(&dp->cls.rwlock);
2c0ea78f 1364 netdev_flow = dp_netdev_find_flow(dp, &key);
1763b4b8 1365 if (netdev_flow) {
b99d3cee 1366 if (del->stats) {
1763b4b8 1367 get_dpif_flow_stats(netdev_flow, del->stats);
feebdea2 1368 }
8a4e3a85 1369 dp_netdev_remove_flow(dp, netdev_flow);
72865317 1370 } else {
5279f8fd 1371 error = ENOENT;
72865317 1372 }
06f81620 1373 fat_rwlock_unlock(&dp->cls.rwlock);
8a4e3a85 1374 ovs_mutex_unlock(&dp->flow_mutex);
5279f8fd
BP
1375
1376 return error;
72865317
BP
1377}
1378
704a1e09 1379struct dp_netdev_flow_state {
a84cb64a 1380 struct dp_netdev_actions *actions;
19cf4069 1381 struct odputil_keybuf keybuf;
2c0ea78f 1382 struct odputil_keybuf maskbuf;
c97fb132 1383 struct dpif_flow_stats stats;
704a1e09
BP
1384};
1385
e723fd32
JS
1386struct dp_netdev_flow_iter {
1387 uint32_t bucket;
1388 uint32_t offset;
d2ad7ef1
JS
1389 int status;
1390 struct ovs_mutex mutex;
e723fd32
JS
1391};
1392
1393static void
1394dpif_netdev_flow_dump_state_init(void **statep)
72865317 1395{
feebdea2
BP
1396 struct dp_netdev_flow_state *state;
1397
1398 *statep = state = xmalloc(sizeof *state);
feebdea2 1399 state->actions = NULL;
e723fd32
JS
1400}
1401
1402static void
1403dpif_netdev_flow_dump_state_uninit(void *state_)
1404{
1405 struct dp_netdev_flow_state *state = state_;
1406
e723fd32
JS
1407 free(state);
1408}
1409
1410static int
1411dpif_netdev_flow_dump_start(const struct dpif *dpif OVS_UNUSED, void **iterp)
1412{
1413 struct dp_netdev_flow_iter *iter;
1414
1415 *iterp = iter = xmalloc(sizeof *iter);
1416 iter->bucket = 0;
1417 iter->offset = 0;
d2ad7ef1
JS
1418 iter->status = 0;
1419 ovs_mutex_init(&iter->mutex);
704a1e09
BP
1420 return 0;
1421}
1422
61e7deb1 1423/* XXX the caller must use 'actions' without quiescing */
704a1e09 1424static int
d2ad7ef1 1425dpif_netdev_flow_dump_next(const struct dpif *dpif, void *iter_, void *state_,
feebdea2 1426 const struct nlattr **key, size_t *key_len,
e6cc0bab 1427 const struct nlattr **mask, size_t *mask_len,
feebdea2 1428 const struct nlattr **actions, size_t *actions_len,
c97fb132 1429 const struct dpif_flow_stats **stats)
704a1e09 1430{
e723fd32 1431 struct dp_netdev_flow_iter *iter = iter_;
d2ad7ef1 1432 struct dp_netdev_flow_state *state = state_;
72865317 1433 struct dp_netdev *dp = get_dp_netdev(dpif);
1763b4b8 1434 struct dp_netdev_flow *netdev_flow;
d2ad7ef1 1435 int error;
14608a15 1436
d2ad7ef1
JS
1437 ovs_mutex_lock(&iter->mutex);
1438 error = iter->status;
1439 if (!error) {
1440 struct hmap_node *node;
1441
1442 fat_rwlock_rdlock(&dp->cls.rwlock);
1443 node = hmap_at_position(&dp->flow_table, &iter->bucket, &iter->offset);
1444 if (node) {
1445 netdev_flow = CONTAINER_OF(node, struct dp_netdev_flow, node);
d2ad7ef1
JS
1446 }
1447 fat_rwlock_unlock(&dp->cls.rwlock);
1448 if (!node) {
1449 iter->status = error = EOF;
1450 }
8a4e3a85 1451 }
d2ad7ef1
JS
1452 ovs_mutex_unlock(&iter->mutex);
1453 if (error) {
1454 return error;
72865317 1455 }
704a1e09 1456
feebdea2
BP
1457 if (key) {
1458 struct ofpbuf buf;
1459
19cf4069 1460 ofpbuf_use_stack(&buf, &state->keybuf, sizeof state->keybuf);
2c0ea78f
GS
1461 odp_flow_key_from_flow(&buf, &netdev_flow->flow,
1462 netdev_flow->flow.in_port.odp_port);
36956a7d 1463
feebdea2
BP
1464 *key = buf.data;
1465 *key_len = buf.size;
1466 }
1467
2c0ea78f
GS
1468 if (key && mask) {
1469 struct ofpbuf buf;
1470 struct flow_wildcards wc;
1471
1472 ofpbuf_use_stack(&buf, &state->maskbuf, sizeof state->maskbuf);
1473 minimask_expand(&netdev_flow->cr.match.mask, &wc);
1474 odp_flow_key_from_mask(&buf, &wc.masks, &netdev_flow->flow,
8bfd0fda
BP
1475 odp_to_u32(wc.masks.in_port.odp_port),
1476 SIZE_MAX);
2c0ea78f
GS
1477
1478 *mask = buf.data;
1479 *mask_len = buf.size;
e6cc0bab
AZ
1480 }
1481
8a4e3a85 1482 if (actions || stats) {
8a4e3a85 1483 state->actions = NULL;
feebdea2 1484
8a4e3a85 1485 if (actions) {
61e7deb1 1486 state->actions = dp_netdev_flow_get_actions(netdev_flow);
8a4e3a85
BP
1487 *actions = state->actions->actions;
1488 *actions_len = state->actions->size;
1489 }
679ba04c 1490
8a4e3a85
BP
1491 if (stats) {
1492 get_dpif_flow_stats(netdev_flow, &state->stats);
1493 *stats = &state->stats;
1494 }
feebdea2 1495 }
704a1e09
BP
1496
1497 return 0;
1498}
1499
1500static int
e723fd32 1501dpif_netdev_flow_dump_done(const struct dpif *dpif OVS_UNUSED, void *iter_)
704a1e09 1502{
e723fd32 1503 struct dp_netdev_flow_iter *iter = iter_;
feebdea2 1504
d2ad7ef1 1505 ovs_mutex_destroy(&iter->mutex);
e723fd32 1506 free(iter);
704a1e09 1507 return 0;
72865317
BP
1508}
1509
1510static int
758c456d 1511dpif_netdev_execute(struct dpif *dpif, struct dpif_execute *execute)
72865317
BP
1512{
1513 struct dp_netdev *dp = get_dp_netdev(dpif);
758c456d
JR
1514 struct pkt_metadata *md = &execute->md;
1515 struct flow key;
72865317 1516
89625d1e
BP
1517 if (execute->packet->size < ETH_HEADER_LEN ||
1518 execute->packet->size > UINT16_MAX) {
72865317
BP
1519 return EINVAL;
1520 }
1521
758c456d 1522 /* Extract flow key. */
b5e7e61a 1523 flow_extract(execute->packet, md, &key);
8a4e3a85
BP
1524
1525 ovs_rwlock_rdlock(&dp->port_rwlock);
df1e5a3b
PS
1526 dp_netdev_execute_actions(dp, &key, execute->packet, false, md,
1527 execute->actions, execute->actions_len);
8a4e3a85
BP
1528 ovs_rwlock_unlock(&dp->port_rwlock);
1529
758c456d 1530 return 0;
72865317
BP
1531}
1532
63be20be
AW
1533static void
1534dp_netdev_destroy_all_queues(struct dp_netdev *dp)
1535 OVS_REQ_WRLOCK(dp->queue_rwlock)
1536{
1537 size_t i;
1538
1539 dp_netdev_purge_queues(dp);
1540
1541 for (i = 0; i < dp->n_handlers; i++) {
1542 struct dp_netdev_queue *q = &dp->handler_queues[i];
1543
1544 ovs_mutex_destroy(&q->mutex);
1545 seq_destroy(q->seq);
1546 }
1547 free(dp->handler_queues);
1548 dp->handler_queues = NULL;
1549 dp->n_handlers = 0;
1550}
1551
1552static void
1553dp_netdev_refresh_queues(struct dp_netdev *dp, uint32_t n_handlers)
1554 OVS_REQ_WRLOCK(dp->queue_rwlock)
1555{
1556 if (dp->n_handlers != n_handlers) {
1557 size_t i;
1558
1559 dp_netdev_destroy_all_queues(dp);
1560
1561 dp->n_handlers = n_handlers;
1562 dp->handler_queues = xzalloc(n_handlers * sizeof *dp->handler_queues);
1563
1564 for (i = 0; i < n_handlers; i++) {
1565 struct dp_netdev_queue *q = &dp->handler_queues[i];
1566
1567 ovs_mutex_init(&q->mutex);
1568 q->seq = seq_create();
1569 }
1570 }
1571}
1572
72865317 1573static int
63be20be 1574dpif_netdev_recv_set(struct dpif *dpif, bool enable)
72865317 1575{
63be20be
AW
1576 struct dp_netdev *dp = get_dp_netdev(dpif);
1577
1578 if ((dp->handler_queues != NULL) == enable) {
1579 return 0;
1580 }
1581
1582 fat_rwlock_wrlock(&dp->queue_rwlock);
1583 if (!enable) {
1584 dp_netdev_destroy_all_queues(dp);
1585 } else {
1586 dp_netdev_refresh_queues(dp, 1);
1587 }
1588 fat_rwlock_unlock(&dp->queue_rwlock);
1589
82272ede 1590 return 0;
72865317
BP
1591}
1592
1954e6bb 1593static int
63be20be 1594dpif_netdev_handlers_set(struct dpif *dpif, uint32_t n_handlers)
1954e6bb 1595{
63be20be
AW
1596 struct dp_netdev *dp = get_dp_netdev(dpif);
1597
1598 fat_rwlock_wrlock(&dp->queue_rwlock);
1599 if (dp->handler_queues) {
1600 dp_netdev_refresh_queues(dp, n_handlers);
1601 }
1602 fat_rwlock_unlock(&dp->queue_rwlock);
1603
1954e6bb
AW
1604 return 0;
1605}
1606
5bf93d67
EJ
1607static int
1608dpif_netdev_queue_to_priority(const struct dpif *dpif OVS_UNUSED,
1609 uint32_t queue_id, uint32_t *priority)
1610{
1611 *priority = queue_id;
1612 return 0;
1613}
1614
63be20be
AW
1615static bool
1616dp_netdev_recv_check(const struct dp_netdev *dp, const uint32_t handler_id)
1617 OVS_REQ_RDLOCK(dp->queue_rwlock)
72865317 1618{
63be20be 1619 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
72865317 1620
63be20be
AW
1621 if (!dp->handler_queues) {
1622 VLOG_WARN_RL(&rl, "receiving upcall disabled");
1623 return false;
72865317 1624 }
63be20be
AW
1625
1626 if (handler_id >= dp->n_handlers) {
1627 VLOG_WARN_RL(&rl, "handler index out of bound");
1628 return false;
1629 }
1630
1631 return true;
72865317
BP
1632}
1633
1634static int
63be20be 1635dpif_netdev_recv(struct dpif *dpif, uint32_t handler_id,
1954e6bb 1636 struct dpif_upcall *upcall, struct ofpbuf *buf)
72865317 1637{
f5126b57 1638 struct dp_netdev *dp = get_dp_netdev(dpif);
5279f8fd 1639 struct dp_netdev_queue *q;
63be20be
AW
1640 int error = 0;
1641
1642 fat_rwlock_rdlock(&dp->queue_rwlock);
5279f8fd 1643
63be20be
AW
1644 if (!dp_netdev_recv_check(dp, handler_id)) {
1645 error = EAGAIN;
1646 goto out;
1647 }
1648
1649 q = &dp->handler_queues[handler_id];
1650 ovs_mutex_lock(&q->mutex);
1651 if (q->head != q->tail) {
d88b629b
BP
1652 struct dp_netdev_upcall *u = &q->upcalls[q->tail++ & QUEUE_MASK];
1653
1654 *upcall = u->upcall;
b3907fbc 1655
90a7c55e 1656 ofpbuf_uninit(buf);
d88b629b 1657 *buf = u->buf;
72865317 1658 } else {
5279f8fd 1659 error = EAGAIN;
72865317 1660 }
63be20be
AW
1661 ovs_mutex_unlock(&q->mutex);
1662
1663out:
1664 fat_rwlock_unlock(&dp->queue_rwlock);
5279f8fd
BP
1665
1666 return error;
72865317
BP
1667}
1668
1669static void
63be20be 1670dpif_netdev_recv_wait(struct dpif *dpif, uint32_t handler_id)
72865317 1671{
d33ed218 1672 struct dp_netdev *dp = get_dp_netdev(dpif);
63be20be 1673 struct dp_netdev_queue *q;
d33ed218 1674 uint64_t seq;
5279f8fd 1675
63be20be
AW
1676 fat_rwlock_rdlock(&dp->queue_rwlock);
1677
1678 if (!dp_netdev_recv_check(dp, handler_id)) {
1679 goto out;
1680 }
1681
1682 q = &dp->handler_queues[handler_id];
1683 ovs_mutex_lock(&q->mutex);
1684 seq = seq_read(q->seq);
1685 if (q->head != q->tail) {
72865317 1686 poll_immediate_wake();
d33ed218 1687 } else {
63be20be 1688 seq_wait(q->seq, seq);
72865317 1689 }
63be20be
AW
1690
1691 ovs_mutex_unlock(&q->mutex);
1692
1693out:
1694 fat_rwlock_unlock(&dp->queue_rwlock);
72865317 1695}
1ba530f4
BP
1696
1697static void
1698dpif_netdev_recv_purge(struct dpif *dpif)
1699{
1700 struct dpif_netdev *dpif_netdev = dpif_netdev_cast(dpif);
f5126b57 1701
63be20be 1702 fat_rwlock_wrlock(&dpif_netdev->dp->queue_rwlock);
1ba530f4 1703 dp_netdev_purge_queues(dpif_netdev->dp);
63be20be 1704 fat_rwlock_unlock(&dpif_netdev->dp->queue_rwlock);
1ba530f4 1705}
72865317 1706\f
a84cb64a
BP
1707/* Creates and returns a new 'struct dp_netdev_actions', with a reference count
1708 * of 1, whose actions are a copy of from the 'ofpacts_len' bytes of
1709 * 'ofpacts'. */
1710struct dp_netdev_actions *
1711dp_netdev_actions_create(const struct nlattr *actions, size_t size)
1712{
1713 struct dp_netdev_actions *netdev_actions;
1714
1715 netdev_actions = xmalloc(sizeof *netdev_actions);
a84cb64a
BP
1716 netdev_actions->actions = xmemdup(actions, size);
1717 netdev_actions->size = size;
1718
1719 return netdev_actions;
1720}
1721
a84cb64a 1722struct dp_netdev_actions *
61e7deb1 1723dp_netdev_flow_get_actions(const struct dp_netdev_flow *flow)
a84cb64a 1724{
61e7deb1 1725 return ovsrcu_get(struct dp_netdev_actions *, &flow->actions);
a84cb64a
BP
1726}
1727
61e7deb1
BP
1728static void
1729dp_netdev_actions_free(struct dp_netdev_actions *actions)
a84cb64a 1730{
61e7deb1
BP
1731 free(actions->actions);
1732 free(actions);
a84cb64a
BP
1733}
1734\f
e4cfed38
PS
1735
1736inline static void
f7791740 1737dp_netdev_process_rxq_port(struct dp_netdev *dp,
e4cfed38 1738 struct dp_netdev_port *port,
f7791740 1739 struct netdev_rxq *rxq)
e4cfed38
PS
1740{
1741 struct ofpbuf *packet[NETDEV_MAX_RX_BATCH];
1742 int error, c;
1743
f7791740 1744 error = netdev_rxq_recv(rxq, packet, &c);
e4cfed38
PS
1745 if (!error) {
1746 struct pkt_metadata md = PKT_METADATA_INITIALIZER(port->port_no);
1747 int i;
1748
1749 for (i = 0; i < c; i++) {
1750 dp_netdev_port_input(dp, packet[i], &md);
1751 }
1752 } else if (error != EAGAIN && error != EOPNOTSUPP) {
1753 static struct vlog_rate_limit rl
1754 = VLOG_RATE_LIMIT_INIT(1, 5);
1755
1756 VLOG_ERR_RL(&rl, "error receiving data from %s: %s",
1757 netdev_get_name(port->netdev),
1758 ovs_strerror(error));
1759 }
1760}
1761
1762static void
1763dpif_netdev_run(struct dpif *dpif)
1764{
1765 struct dp_netdev_port *port;
1766 struct dp_netdev *dp = get_dp_netdev(dpif);
1767
1768 ovs_rwlock_rdlock(&dp->port_rwlock);
1769
1770 HMAP_FOR_EACH (port, node, &dp->ports) {
55c955bd
PS
1771 if (!netdev_is_pmd(port->netdev)) {
1772 int i;
1773
1774 for (i = 0; i < netdev_n_rxq(port->netdev); i++) {
1775 dp_netdev_process_rxq_port(dp, port, port->rxq[i]);
1776 }
e4cfed38
PS
1777 }
1778 }
1779
1780 ovs_rwlock_unlock(&dp->port_rwlock);
1781}
1782
1783static void
1784dpif_netdev_wait(struct dpif *dpif)
1785{
1786 struct dp_netdev_port *port;
1787 struct dp_netdev *dp = get_dp_netdev(dpif);
1788
1789 ovs_rwlock_rdlock(&dp->port_rwlock);
1790
1791 HMAP_FOR_EACH (port, node, &dp->ports) {
55c955bd
PS
1792 if (!netdev_is_pmd(port->netdev)) {
1793 int i;
1794
1795 for (i = 0; i < netdev_n_rxq(port->netdev); i++) {
1796 netdev_rxq_wait(port->rxq[i]);
1797 }
e4cfed38
PS
1798 }
1799 }
1800 ovs_rwlock_unlock(&dp->port_rwlock);
1801}
1802
f7791740 1803struct rxq_poll {
e4cfed38 1804 struct dp_netdev_port *port;
55c955bd 1805 struct netdev_rxq *rx;
e4cfed38
PS
1806};
1807
1808static int
1809pmd_load_queues(struct pmd_thread *f,
f7791740 1810 struct rxq_poll **ppoll_list, int poll_cnt)
e4cfed38
PS
1811{
1812 struct dp_netdev *dp = f->dp;
f7791740 1813 struct rxq_poll *poll_list = *ppoll_list;
e4cfed38
PS
1814 struct dp_netdev_port *port;
1815 int id = f->id;
1816 int index;
1817 int i;
1818
1819 /* Simple scheduler for netdev rx polling. */
1820 ovs_rwlock_rdlock(&dp->port_rwlock);
1821 for (i = 0; i < poll_cnt; i++) {
1822 port_unref(poll_list[i].port);
1823 }
1824
1825 poll_cnt = 0;
1826 index = 0;
1827
1828 HMAP_FOR_EACH (port, node, &f->dp->ports) {
1829 if (netdev_is_pmd(port->netdev)) {
55c955bd
PS
1830 int i;
1831
1832 for (i = 0; i < netdev_n_rxq(port->netdev); i++) {
1833 if ((index % dp->n_pmd_threads) == id) {
1834 poll_list = xrealloc(poll_list, sizeof *poll_list * (poll_cnt + 1));
e4cfed38 1835
55c955bd
PS
1836 port_ref(port);
1837 poll_list[poll_cnt].port = port;
1838 poll_list[poll_cnt].rx = port->rxq[i];
1839 poll_cnt++;
1840 }
1841 index++;
e4cfed38 1842 }
e4cfed38
PS
1843 }
1844 }
1845
1846 ovs_rwlock_unlock(&dp->port_rwlock);
1847 *ppoll_list = poll_list;
1848 return poll_cnt;
1849}
1850
6c3eee82 1851static void *
e4cfed38 1852pmd_thread_main(void *f_)
6c3eee82 1853{
e4cfed38 1854 struct pmd_thread *f = f_;
6c3eee82 1855 struct dp_netdev *dp = f->dp;
e4cfed38 1856 unsigned int lc = 0;
f7791740 1857 struct rxq_poll *poll_list;
e4cfed38
PS
1858 unsigned int port_seq;
1859 int poll_cnt;
1860 int i;
6c3eee82 1861
e4cfed38 1862 f->name = xasprintf("pmd_%u", ovsthread_id_self());
6c3eee82 1863 set_subprogram_name("%s", f->name);
e4cfed38
PS
1864 poll_cnt = 0;
1865 poll_list = NULL;
1866
1867reload:
1868 poll_cnt = pmd_load_queues(f, &poll_list, poll_cnt);
1869 atomic_read(&f->change_seq, &port_seq);
6c3eee82 1870
e4cfed38
PS
1871 for (;;) {
1872 unsigned int c_port_seq;
6c3eee82
BP
1873 int i;
1874
e4cfed38 1875 for (i = 0; i < poll_cnt; i++) {
55c955bd 1876 dp_netdev_process_rxq_port(dp, poll_list[i].port, poll_list[i].rx);
e4cfed38
PS
1877 }
1878
1879 if (lc++ > 1024) {
1880 ovsrcu_quiesce();
6c3eee82 1881
e4cfed38
PS
1882 /* TODO: need completely userspace based signaling method.
1883 * to keep this thread entirely in userspace.
1884 * For now using atomic counter. */
1885 lc = 0;
1886 atomic_read_explicit(&f->change_seq, &c_port_seq, memory_order_consume);
1887 if (c_port_seq != port_seq) {
6c3eee82
BP
1888 break;
1889 }
1890 }
e4cfed38 1891 }
6c3eee82 1892
e4cfed38
PS
1893 if (!latch_is_set(&f->dp->exit_latch)){
1894 goto reload;
1895 }
6c3eee82 1896
e4cfed38
PS
1897 for (i = 0; i < poll_cnt; i++) {
1898 port_unref(poll_list[i].port);
6c3eee82 1899 }
6c3eee82 1900
e4cfed38 1901 free(poll_list);
6c3eee82 1902 free(f->name);
6c3eee82
BP
1903 return NULL;
1904}
1905
1906static void
e4cfed38 1907dp_netdev_set_pmd_threads(struct dp_netdev *dp, int n)
6c3eee82
BP
1908{
1909 int i;
1910
e4cfed38 1911 if (n == dp->n_pmd_threads) {
6c3eee82
BP
1912 return;
1913 }
1914
1915 /* Stop existing threads. */
1916 latch_set(&dp->exit_latch);
e4cfed38
PS
1917 dp_netdev_reload_pmd_threads(dp);
1918 for (i = 0; i < dp->n_pmd_threads; i++) {
1919 struct pmd_thread *f = &dp->pmd_threads[i];
6c3eee82
BP
1920
1921 xpthread_join(f->thread, NULL);
1922 }
1923 latch_poll(&dp->exit_latch);
e4cfed38 1924 free(dp->pmd_threads);
6c3eee82
BP
1925
1926 /* Start new threads. */
e4cfed38
PS
1927 dp->pmd_threads = xmalloc(n * sizeof *dp->pmd_threads);
1928 dp->n_pmd_threads = n;
1929
6c3eee82 1930 for (i = 0; i < n; i++) {
e4cfed38 1931 struct pmd_thread *f = &dp->pmd_threads[i];
6c3eee82
BP
1932
1933 f->dp = dp;
e4cfed38
PS
1934 f->id = i;
1935 atomic_store(&f->change_seq, 1);
1936
1937 /* Each thread will distribute all devices rx-queues among
1938 * themselves. */
1939 xpthread_create(&f->thread, NULL, pmd_thread_main, f);
6c3eee82
BP
1940 }
1941}
e4cfed38 1942
6c3eee82 1943\f
679ba04c
BP
1944static void *
1945dp_netdev_flow_stats_new_cb(void)
1946{
1947 struct dp_netdev_flow_stats *bucket = xzalloc_cacheline(sizeof *bucket);
1948 ovs_mutex_init(&bucket->mutex);
1949 return bucket;
1950}
1951
72865317 1952static void
1763b4b8 1953dp_netdev_flow_used(struct dp_netdev_flow *netdev_flow,
855dd13c
JR
1954 const struct ofpbuf *packet,
1955 const struct flow *key)
72865317 1956{
e0eecb1c 1957 uint16_t tcp_flags = ntohs(key->tcp_flags);
679ba04c
BP
1958 long long int now = time_msec();
1959 struct dp_netdev_flow_stats *bucket;
1960
1961 bucket = ovsthread_stats_bucket_get(&netdev_flow->stats,
1962 dp_netdev_flow_stats_new_cb);
1963
1964 ovs_mutex_lock(&bucket->mutex);
1965 bucket->used = MAX(now, bucket->used);
1966 bucket->packet_count++;
1967 bucket->byte_count += packet->size;
1968 bucket->tcp_flags |= tcp_flags;
1969 ovs_mutex_unlock(&bucket->mutex);
72865317
BP
1970}
1971
51852a57
BP
1972static void *
1973dp_netdev_stats_new_cb(void)
1974{
1975 struct dp_netdev_stats *bucket = xzalloc_cacheline(sizeof *bucket);
1976 ovs_mutex_init(&bucket->mutex);
1977 return bucket;
1978}
1979
1980static void
1981dp_netdev_count_packet(struct dp_netdev *dp, enum dp_stat_type type)
1982{
1983 struct dp_netdev_stats *bucket;
1984
1985 bucket = ovsthread_stats_bucket_get(&dp->stats, dp_netdev_stats_new_cb);
1986 ovs_mutex_lock(&bucket->mutex);
1987 bucket->n[type]++;
1988 ovs_mutex_unlock(&bucket->mutex);
1989}
1990
72865317 1991static void
758c456d
JR
1992dp_netdev_port_input(struct dp_netdev *dp, struct ofpbuf *packet,
1993 struct pkt_metadata *md)
72865317 1994{
1763b4b8 1995 struct dp_netdev_flow *netdev_flow;
14608a15 1996 struct flow key;
72865317 1997
1805876e 1998 if (packet->size < ETH_HEADER_LEN) {
df1e5a3b 1999 ofpbuf_delete(packet);
1805876e
BP
2000 return;
2001 }
b5e7e61a 2002 flow_extract(packet, md, &key);
1763b4b8
GS
2003 netdev_flow = dp_netdev_lookup_flow(dp, &key);
2004 if (netdev_flow) {
a84cb64a
BP
2005 struct dp_netdev_actions *actions;
2006
855dd13c 2007 dp_netdev_flow_used(netdev_flow, packet, &key);
679ba04c 2008
61e7deb1 2009 actions = dp_netdev_flow_get_actions(netdev_flow);
df1e5a3b 2010 dp_netdev_execute_actions(dp, &key, packet, true, md,
a84cb64a 2011 actions->actions, actions->size);
51852a57 2012 dp_netdev_count_packet(dp, DP_STAT_HIT);
63be20be 2013 } else if (dp->handler_queues) {
51852a57 2014 dp_netdev_count_packet(dp, DP_STAT_MISS);
63be20be
AW
2015 dp_netdev_output_userspace(dp, packet,
2016 flow_hash_5tuple(&key, 0) % dp->n_handlers,
2017 DPIF_UC_MISS, &key, NULL);
df1e5a3b 2018 ofpbuf_delete(packet);
72865317
BP
2019 }
2020}
2021
72865317 2022static int
da546e07 2023dp_netdev_output_userspace(struct dp_netdev *dp, struct ofpbuf *packet,
63be20be 2024 int queue_no, int type, const struct flow *flow,
e995e3df 2025 const struct nlattr *userdata)
72865317 2026{
63be20be 2027 struct dp_netdev_queue *q;
f5126b57
BP
2028 int error;
2029
63be20be
AW
2030 fat_rwlock_rdlock(&dp->queue_rwlock);
2031 q = &dp->handler_queues[queue_no];
2032 ovs_mutex_lock(&q->mutex);
e995e3df
BP
2033 if (q->head - q->tail < MAX_QUEUE_LEN) {
2034 struct dp_netdev_upcall *u = &q->upcalls[q->head++ & QUEUE_MASK];
2035 struct dpif_upcall *upcall = &u->upcall;
2036 struct ofpbuf *buf = &u->buf;
2037 size_t buf_size;
2038
63be20be 2039 upcall->type = type;
e995e3df
BP
2040
2041 /* Allocate buffer big enough for everything. */
da546e07 2042 buf_size = ODPUTIL_FLOW_KEY_BYTES;
e995e3df
BP
2043 if (userdata) {
2044 buf_size += NLA_ALIGN(userdata->nla_len);
2045 }
df1e5a3b 2046 buf_size += packet->size;
e995e3df 2047 ofpbuf_init(buf, buf_size);
72865317 2048
e995e3df 2049 /* Put ODP flow. */
4e022ec0 2050 odp_flow_key_from_flow(buf, flow, flow->in_port.odp_port);
e995e3df
BP
2051 upcall->key = buf->data;
2052 upcall->key_len = buf->size;
d88b629b 2053
e995e3df
BP
2054 /* Put userdata. */
2055 if (userdata) {
2056 upcall->userdata = ofpbuf_put(buf, userdata,
2057 NLA_ALIGN(userdata->nla_len));
2058 }
856081f6 2059
df1e5a3b
PS
2060 upcall->packet.data = ofpbuf_put(buf, packet->data, packet->size);
2061 upcall->packet.size = packet->size;
856081f6 2062
63be20be 2063 seq_change(q->seq);
d33ed218 2064
f5126b57 2065 error = 0;
e995e3df 2066 } else {
51852a57 2067 dp_netdev_count_packet(dp, DP_STAT_LOST);
f5126b57 2068 error = ENOBUFS;
e995e3df 2069 }
63be20be
AW
2070 ovs_mutex_unlock(&q->mutex);
2071 fat_rwlock_unlock(&dp->queue_rwlock);
f5126b57
BP
2072
2073 return error;
72865317
BP
2074}
2075
9080a111
JR
2076struct dp_netdev_execute_aux {
2077 struct dp_netdev *dp;
2078 const struct flow *key;
2079};
2080
2081static void
758c456d
JR
2082dp_execute_cb(void *aux_, struct ofpbuf *packet,
2083 const struct pkt_metadata *md OVS_UNUSED,
09f9da0b 2084 const struct nlattr *a, bool may_steal)
8a4e3a85 2085 OVS_NO_THREAD_SAFETY_ANALYSIS
9080a111
JR
2086{
2087 struct dp_netdev_execute_aux *aux = aux_;
09f9da0b 2088 int type = nl_attr_type(a);
8a4e3a85 2089 struct dp_netdev_port *p;
9080a111 2090
09f9da0b
JR
2091 switch ((enum ovs_action_attr)type) {
2092 case OVS_ACTION_ATTR_OUTPUT:
8a4e3a85
BP
2093 p = dp_netdev_lookup_port(aux->dp, u32_to_odp(nl_attr_get_u32(a)));
2094 if (p) {
40d26f04 2095 netdev_send(p->netdev, packet, may_steal);
8a4e3a85 2096 }
09f9da0b
JR
2097 break;
2098
2099 case OVS_ACTION_ATTR_USERSPACE: {
2100 const struct nlattr *userdata;
4fc65926 2101
09f9da0b 2102 userdata = nl_attr_find_nested(a, OVS_USERSPACE_ATTR_USERDATA);
da546e07 2103
63be20be
AW
2104 dp_netdev_output_userspace(aux->dp, packet,
2105 flow_hash_5tuple(aux->key, 0)
2106 % aux->dp->n_handlers,
2107 DPIF_UC_ACTION, aux->key,
09f9da0b 2108 userdata);
40d26f04
PS
2109
2110 if (may_steal) {
2111 ofpbuf_delete(packet);
2112 }
09f9da0b 2113 break;
da546e07 2114 }
09f9da0b
JR
2115 case OVS_ACTION_ATTR_PUSH_VLAN:
2116 case OVS_ACTION_ATTR_POP_VLAN:
2117 case OVS_ACTION_ATTR_PUSH_MPLS:
2118 case OVS_ACTION_ATTR_POP_MPLS:
2119 case OVS_ACTION_ATTR_SET:
2120 case OVS_ACTION_ATTR_SAMPLE:
2121 case OVS_ACTION_ATTR_UNSPEC:
2122 case __OVS_ACTION_ATTR_MAX:
2123 OVS_NOT_REACHED();
da546e07 2124 }
df1e5a3b 2125
98403001
BP
2126}
2127
4edb9ae9 2128static void
9080a111 2129dp_netdev_execute_actions(struct dp_netdev *dp, const struct flow *key,
df1e5a3b
PS
2130 struct ofpbuf *packet, bool may_steal,
2131 struct pkt_metadata *md,
9080a111 2132 const struct nlattr *actions, size_t actions_len)
72865317 2133{
9080a111 2134 struct dp_netdev_execute_aux aux = {dp, key};
9080a111 2135
df1e5a3b
PS
2136 odp_execute_actions(&aux, packet, may_steal, md,
2137 actions, actions_len, dp_execute_cb);
72865317
BP
2138}
2139
2140const struct dpif_class dpif_netdev_class = {
72865317 2141 "netdev",
2197d7ab 2142 dpif_netdev_enumerate,
0aeaabc8 2143 dpif_netdev_port_open_type,
72865317
BP
2144 dpif_netdev_open,
2145 dpif_netdev_close,
7dab847a 2146 dpif_netdev_destroy,
e4cfed38
PS
2147 dpif_netdev_run,
2148 dpif_netdev_wait,
72865317 2149 dpif_netdev_get_stats,
72865317
BP
2150 dpif_netdev_port_add,
2151 dpif_netdev_port_del,
2152 dpif_netdev_port_query_by_number,
2153 dpif_netdev_port_query_by_name,
98403001 2154 NULL, /* port_get_pid */
b0ec0f27
BP
2155 dpif_netdev_port_dump_start,
2156 dpif_netdev_port_dump_next,
2157 dpif_netdev_port_dump_done,
72865317
BP
2158 dpif_netdev_port_poll,
2159 dpif_netdev_port_poll_wait,
72865317
BP
2160 dpif_netdev_flow_get,
2161 dpif_netdev_flow_put,
2162 dpif_netdev_flow_del,
2163 dpif_netdev_flow_flush,
e723fd32 2164 dpif_netdev_flow_dump_state_init,
704a1e09
BP
2165 dpif_netdev_flow_dump_start,
2166 dpif_netdev_flow_dump_next,
bdeadfdd 2167 NULL,
704a1e09 2168 dpif_netdev_flow_dump_done,
e723fd32 2169 dpif_netdev_flow_dump_state_uninit,
72865317 2170 dpif_netdev_execute,
6bc60024 2171 NULL, /* operate */
a12b3ead 2172 dpif_netdev_recv_set,
1954e6bb 2173 dpif_netdev_handlers_set,
5bf93d67 2174 dpif_netdev_queue_to_priority,
72865317
BP
2175 dpif_netdev_recv,
2176 dpif_netdev_recv_wait,
1ba530f4 2177 dpif_netdev_recv_purge,
72865317 2178};
614c4892 2179
74cc3969
BP
2180static void
2181dpif_dummy_change_port_number(struct unixctl_conn *conn, int argc OVS_UNUSED,
2182 const char *argv[], void *aux OVS_UNUSED)
2183{
2184 struct dp_netdev_port *port;
2185 struct dp_netdev *dp;
ff073a71 2186 odp_port_t port_no;
74cc3969 2187
8a4e3a85 2188 ovs_mutex_lock(&dp_netdev_mutex);
74cc3969
BP
2189 dp = shash_find_data(&dp_netdevs, argv[1]);
2190 if (!dp || !dpif_netdev_class_is_dummy(dp->class)) {
8a4e3a85 2191 ovs_mutex_unlock(&dp_netdev_mutex);
74cc3969
BP
2192 unixctl_command_reply_error(conn, "unknown datapath or not a dummy");
2193 return;
2194 }
8a4e3a85
BP
2195 ovs_refcount_ref(&dp->ref_cnt);
2196 ovs_mutex_unlock(&dp_netdev_mutex);
74cc3969 2197
8a4e3a85 2198 ovs_rwlock_wrlock(&dp->port_rwlock);
74cc3969
BP
2199 if (get_port_by_name(dp, argv[2], &port)) {
2200 unixctl_command_reply_error(conn, "unknown port");
8a4e3a85 2201 goto exit;
74cc3969
BP
2202 }
2203
ff073a71
BP
2204 port_no = u32_to_odp(atoi(argv[3]));
2205 if (!port_no || port_no == ODPP_NONE) {
74cc3969 2206 unixctl_command_reply_error(conn, "bad port number");
8a4e3a85 2207 goto exit;
74cc3969 2208 }
ff073a71 2209 if (dp_netdev_lookup_port(dp, port_no)) {
74cc3969 2210 unixctl_command_reply_error(conn, "port number already in use");
8a4e3a85 2211 goto exit;
74cc3969 2212 }
ff073a71
BP
2213 hmap_remove(&dp->ports, &port->node);
2214 port->port_no = port_no;
2215 hmap_insert(&dp->ports, &port->node, hash_int(odp_to_u32(port_no), 0));
d33ed218 2216 seq_change(dp->port_seq);
74cc3969 2217 unixctl_command_reply(conn, NULL);
8a4e3a85
BP
2218
2219exit:
2220 ovs_rwlock_unlock(&dp->port_rwlock);
2221 dp_netdev_unref(dp);
74cc3969
BP
2222}
2223
0cbfe35d
BP
2224static void
2225dpif_dummy_register__(const char *type)
2226{
2227 struct dpif_class *class;
2228
2229 class = xmalloc(sizeof *class);
2230 *class = dpif_netdev_class;
2231 class->type = xstrdup(type);
2232 dp_register_provider(class);
2233}
2234
614c4892 2235void
0cbfe35d 2236dpif_dummy_register(bool override)
614c4892 2237{
0cbfe35d
BP
2238 if (override) {
2239 struct sset types;
2240 const char *type;
2241
2242 sset_init(&types);
2243 dp_enumerate_types(&types);
2244 SSET_FOR_EACH (type, &types) {
2245 if (!dp_unregister_provider(type)) {
2246 dpif_dummy_register__(type);
2247 }
2248 }
2249 sset_destroy(&types);
614c4892 2250 }
0cbfe35d
BP
2251
2252 dpif_dummy_register__("dummy");
74cc3969
BP
2253
2254 unixctl_command_register("dpif-dummy/change-port-number",
2255 "DP PORT NEW-NUMBER",
2256 3, 3, dpif_dummy_change_port_number, NULL);
614c4892 2257}