forked from doonhammer/ovs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathofproto-dpif-upcall.c
1715 lines (1457 loc) · 58.1 KB
/
ofproto-dpif-upcall.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License. */
#include <config.h>
#include "ofproto-dpif-upcall.h"
#include <errno.h>
#include <stdbool.h>
#include <inttypes.h>
#include "connmgr.h"
#include "coverage.h"
#include "dpif.h"
#include "dynamic-string.h"
#include "fail-open.h"
#include "guarded-list.h"
#include "latch.h"
#include "list.h"
#include "netlink.h"
#include "ofpbuf.h"
#include "ofproto-dpif-ipfix.h"
#include "ofproto-dpif-sflow.h"
#include "ofproto-dpif-xlate.h"
#include "packets.h"
#include "poll-loop.h"
#include "seq.h"
#include "unixctl.h"
#include "vlog.h"
#define MAX_QUEUE_LENGTH 512
#define FLOW_MISS_MAX_BATCH 50
#define REVALIDATE_MAX_BATCH 50
VLOG_DEFINE_THIS_MODULE(ofproto_dpif_upcall);
COVERAGE_DEFINE(upcall_queue_overflow);
COVERAGE_DEFINE(upcall_duplicate_flow);
/* A thread that processes each upcall handed to it by the dispatcher thread,
* forwards the upcall's packet, and possibly sets up a kernel flow as a
* cache. */
struct handler {
struct udpif *udpif; /* Parent udpif. */
pthread_t thread; /* Thread ID. */
char *name; /* Thread name. */
struct ovs_mutex mutex; /* Mutex guarding the following. */
/* Atomic queue of unprocessed upcalls. */
struct list upcalls OVS_GUARDED;
size_t n_upcalls OVS_GUARDED;
bool need_signal; /* Only changed by the dispatcher. */
pthread_cond_t wake_cond; /* Wakes 'thread' while holding
'mutex'. */
};
/* A thread that processes each kernel flow handed to it by the flow_dumper
* thread, updates OpenFlow statistics, and updates or removes the kernel flow
* as necessary. */
struct revalidator {
struct udpif *udpif; /* Parent udpif. */
char *name; /* Thread name. */
pthread_t thread; /* Thread ID. */
struct hmap ukeys; /* Datapath flow keys. */
uint64_t dump_seq;
struct ovs_mutex mutex; /* Mutex guarding the following. */
pthread_cond_t wake_cond;
struct list udumps OVS_GUARDED; /* Unprocessed udumps. */
size_t n_udumps OVS_GUARDED; /* Number of unprocessed udumps. */
};
/* An upcall handler for ofproto_dpif.
*
* udpif has two logically separate pieces:
*
* - A "dispatcher" thread that reads upcalls from the kernel and dispatches
* them to one of several "handler" threads (see struct handler).
*
* - A "flow_dumper" thread that reads the kernel flow table and dispatches
* flows to one of several "revalidator" threads (see struct
* revalidator). */
struct udpif {
struct list list_node; /* In all_udpifs list. */
struct dpif *dpif; /* Datapath handle. */
struct dpif_backer *backer; /* Opaque dpif_backer pointer. */
uint32_t secret; /* Random seed for upcall hash. */
pthread_t dispatcher; /* Dispatcher thread ID. */
pthread_t flow_dumper; /* Flow dumper thread ID. */
struct handler *handlers; /* Upcall handlers. */
size_t n_handlers;
struct revalidator *revalidators; /* Flow revalidators. */
size_t n_revalidators;
uint64_t last_reval_seq; /* 'reval_seq' at last revalidation. */
struct seq *reval_seq; /* Incremented to force revalidation. */
struct seq *dump_seq; /* Increments each dump iteration. */
struct latch exit_latch; /* Tells child threads to exit. */
long long int dump_duration; /* Duration of the last flow dump. */
/* Datapath flow statistics. */
unsigned int max_n_flows;
unsigned int avg_n_flows;
atomic_uint flow_limit; /* Datapath flow hard limit. */
/* n_flows_mutex prevents multiple threads updating these concurrently. */
atomic_uint64_t n_flows; /* Number of flows in the datapath. */
atomic_llong n_flows_timestamp; /* Last time n_flows was updated. */
struct ovs_mutex n_flows_mutex;
};
enum upcall_type {
BAD_UPCALL, /* Some kind of bug somewhere. */
MISS_UPCALL, /* A flow miss. */
SFLOW_UPCALL, /* sFlow sample. */
FLOW_SAMPLE_UPCALL, /* Per-flow sampling. */
IPFIX_UPCALL /* Per-bridge sampling. */
};
struct upcall {
struct list list_node; /* For queuing upcalls. */
struct flow_miss *flow_miss; /* This upcall's flow_miss. */
/* Raw upcall plus data for keeping track of the memory backing it. */
struct dpif_upcall dpif_upcall; /* As returned by dpif_recv() */
struct ofpbuf upcall_buf; /* Owns some data in 'dpif_upcall'. */
uint64_t upcall_stub[512 / 8]; /* Buffer to reduce need for malloc(). */
};
/* 'udpif_key's are responsible for tracking the little bit of state udpif
* needs to do flow expiration which can't be pulled directly from the
* datapath. They are owned, created by, maintained, and destroyed by a single
* revalidator making them easy to efficiently handle with multiple threads. */
struct udpif_key {
struct hmap_node hmap_node; /* In parent revalidator 'ukeys' map. */
struct nlattr *key; /* Datapath flow key. */
size_t key_len; /* Length of 'key'. */
struct dpif_flow_stats stats; /* Stats at most recent flow dump. */
long long int created; /* Estimation of creation time. */
bool mark; /* Used by mark and sweep GC algorithm. */
bool flow_exists; /* Ensures flows are only deleted once. */
struct odputil_keybuf key_buf; /* Memory for 'key'. */
};
/* 'udpif_flow_dump's hold the state associated with one iteration in a flow
* dump operation. This is created by the flow_dumper thread and handed to the
* appropriate revalidator thread to be processed. */
struct udpif_flow_dump {
struct list list_node;
struct nlattr *key; /* Datapath flow key. */
size_t key_len; /* Length of 'key'. */
uint32_t key_hash; /* Hash of 'key'. */
struct odputil_keybuf mask_buf;
struct nlattr *mask; /* Datapath mask for 'key'. */
size_t mask_len; /* Length of 'mask'. */
struct dpif_flow_stats stats; /* Stats pulled from the datapath. */
bool need_revalidate; /* Key needs revalidation? */
struct odputil_keybuf key_buf;
};
/* Flow miss batching.
*
* Some dpifs implement operations faster when you hand them off in a batch.
* To allow batching, "struct flow_miss" queues the dpif-related work needed
* for a given flow. Each "struct flow_miss" corresponds to sending one or
* more packets, plus possibly installing the flow in the dpif. */
struct flow_miss {
struct hmap_node hmap_node;
struct ofproto_dpif *ofproto;
struct flow flow;
enum odp_key_fitness key_fitness;
const struct nlattr *key;
size_t key_len;
enum dpif_upcall_type upcall_type;
struct dpif_flow_stats stats;
odp_port_t odp_in_port;
uint64_t slow_path_buf[128 / 8];
struct odputil_keybuf mask_buf;
struct xlate_out xout;
bool put;
};
static void upcall_destroy(struct upcall *);
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
static struct list all_udpifs = LIST_INITIALIZER(&all_udpifs);
static void recv_upcalls(struct udpif *);
static void handle_upcalls(struct handler *handler, struct list *upcalls);
static void *udpif_flow_dumper(void *);
static void *udpif_dispatcher(void *);
static void *udpif_upcall_handler(void *);
static void *udpif_revalidator(void *);
static uint64_t udpif_get_n_flows(struct udpif *);
static void revalidate_udumps(struct revalidator *, struct list *udumps);
static void revalidator_sweep(struct revalidator *);
static void revalidator_purge(struct revalidator *);
static void upcall_unixctl_show(struct unixctl_conn *conn, int argc,
const char *argv[], void *aux);
static void upcall_unixctl_disable_megaflows(struct unixctl_conn *, int argc,
const char *argv[], void *aux);
static void upcall_unixctl_enable_megaflows(struct unixctl_conn *, int argc,
const char *argv[], void *aux);
static void upcall_unixctl_set_flow_limit(struct unixctl_conn *conn, int argc,
const char *argv[], void *aux);
static void ukey_delete(struct revalidator *, struct udpif_key *);
static atomic_bool enable_megaflows = ATOMIC_VAR_INIT(true);
struct udpif *
udpif_create(struct dpif_backer *backer, struct dpif *dpif)
{
static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
struct udpif *udpif = xzalloc(sizeof *udpif);
if (ovsthread_once_start(&once)) {
unixctl_command_register("upcall/show", "", 0, 0, upcall_unixctl_show,
NULL);
unixctl_command_register("upcall/disable-megaflows", "", 0, 0,
upcall_unixctl_disable_megaflows, NULL);
unixctl_command_register("upcall/enable-megaflows", "", 0, 0,
upcall_unixctl_enable_megaflows, NULL);
unixctl_command_register("upcall/set-flow-limit", "", 1, 1,
upcall_unixctl_set_flow_limit, NULL);
ovsthread_once_done(&once);
}
udpif->dpif = dpif;
udpif->backer = backer;
atomic_init(&udpif->flow_limit, MIN(ofproto_flow_limit, 10000));
udpif->secret = random_uint32();
udpif->reval_seq = seq_create();
udpif->dump_seq = seq_create();
latch_init(&udpif->exit_latch);
list_push_back(&all_udpifs, &udpif->list_node);
atomic_init(&udpif->n_flows, 0);
atomic_init(&udpif->n_flows_timestamp, LLONG_MIN);
ovs_mutex_init(&udpif->n_flows_mutex);
return udpif;
}
void
udpif_destroy(struct udpif *udpif)
{
udpif_set_threads(udpif, 0, 0);
udpif_flush();
list_remove(&udpif->list_node);
latch_destroy(&udpif->exit_latch);
seq_destroy(udpif->reval_seq);
seq_destroy(udpif->dump_seq);
ovs_mutex_destroy(&udpif->n_flows_mutex);
free(udpif);
}
/* Tells 'udpif' how many threads it should use to handle upcalls. Disables
* all threads if 'n_handlers' and 'n_revalidators' is zero. 'udpif''s
* datapath handle must have packet reception enabled before starting threads.
*/
void
udpif_set_threads(struct udpif *udpif, size_t n_handlers,
size_t n_revalidators)
{
/* Stop the old threads (if any). */
if (udpif->handlers &&
(udpif->n_handlers != n_handlers
|| udpif->n_revalidators != n_revalidators)) {
size_t i;
latch_set(&udpif->exit_latch);
for (i = 0; i < udpif->n_handlers; i++) {
struct handler *handler = &udpif->handlers[i];
ovs_mutex_lock(&handler->mutex);
xpthread_cond_signal(&handler->wake_cond);
ovs_mutex_unlock(&handler->mutex);
xpthread_join(handler->thread, NULL);
}
for (i = 0; i < udpif->n_revalidators; i++) {
struct revalidator *revalidator = &udpif->revalidators[i];
ovs_mutex_lock(&revalidator->mutex);
xpthread_cond_signal(&revalidator->wake_cond);
ovs_mutex_unlock(&revalidator->mutex);
xpthread_join(revalidator->thread, NULL);
}
xpthread_join(udpif->flow_dumper, NULL);
xpthread_join(udpif->dispatcher, NULL);
for (i = 0; i < udpif->n_revalidators; i++) {
struct revalidator *revalidator = &udpif->revalidators[i];
struct udpif_flow_dump *udump, *next_udump;
LIST_FOR_EACH_SAFE (udump, next_udump, list_node,
&revalidator->udumps) {
list_remove(&udump->list_node);
free(udump);
}
/* Delete ukeys, and delete all flows from the datapath to prevent
* double-counting stats. */
revalidator_purge(revalidator);
hmap_destroy(&revalidator->ukeys);
ovs_mutex_destroy(&revalidator->mutex);
free(revalidator->name);
}
for (i = 0; i < udpif->n_handlers; i++) {
struct handler *handler = &udpif->handlers[i];
struct upcall *miss, *next;
LIST_FOR_EACH_SAFE (miss, next, list_node, &handler->upcalls) {
list_remove(&miss->list_node);
upcall_destroy(miss);
}
ovs_mutex_destroy(&handler->mutex);
xpthread_cond_destroy(&handler->wake_cond);
free(handler->name);
}
latch_poll(&udpif->exit_latch);
free(udpif->revalidators);
udpif->revalidators = NULL;
udpif->n_revalidators = 0;
free(udpif->handlers);
udpif->handlers = NULL;
udpif->n_handlers = 0;
}
/* Start new threads (if necessary). */
if (!udpif->handlers && n_handlers) {
size_t i;
udpif->n_handlers = n_handlers;
udpif->n_revalidators = n_revalidators;
udpif->handlers = xzalloc(udpif->n_handlers * sizeof *udpif->handlers);
for (i = 0; i < udpif->n_handlers; i++) {
struct handler *handler = &udpif->handlers[i];
handler->udpif = udpif;
list_init(&handler->upcalls);
handler->need_signal = false;
xpthread_cond_init(&handler->wake_cond, NULL);
ovs_mutex_init(&handler->mutex);
xpthread_create(&handler->thread, NULL, udpif_upcall_handler,
handler);
}
udpif->revalidators = xzalloc(udpif->n_revalidators
* sizeof *udpif->revalidators);
for (i = 0; i < udpif->n_revalidators; i++) {
struct revalidator *revalidator = &udpif->revalidators[i];
revalidator->udpif = udpif;
list_init(&revalidator->udumps);
hmap_init(&revalidator->ukeys);
ovs_mutex_init(&revalidator->mutex);
xpthread_cond_init(&revalidator->wake_cond, NULL);
xpthread_create(&revalidator->thread, NULL, udpif_revalidator,
revalidator);
}
xpthread_create(&udpif->dispatcher, NULL, udpif_dispatcher, udpif);
xpthread_create(&udpif->flow_dumper, NULL, udpif_flow_dumper, udpif);
}
}
/* Waits for all ongoing upcall translations to complete. This ensures that
* there are no transient references to any removed ofprotos (or other
* objects). In particular, this should be called after an ofproto is removed
* (e.g. via xlate_remove_ofproto()) but before it is destroyed. */
void
udpif_synchronize(struct udpif *udpif)
{
/* This is stronger than necessary. It would be sufficient to ensure
* (somehow) that each handler and revalidator thread had passed through
* its main loop once. */
size_t n_handlers = udpif->n_handlers;
size_t n_revalidators = udpif->n_revalidators;
udpif_set_threads(udpif, 0, 0);
udpif_set_threads(udpif, n_handlers, n_revalidators);
}
/* Notifies 'udpif' that something changed which may render previous
* xlate_actions() results invalid. */
void
udpif_revalidate(struct udpif *udpif)
{
seq_change(udpif->reval_seq);
}
/* Returns a seq which increments every time 'udpif' pulls stats from the
* datapath. Callers can use this to get a sense of when might be a good time
* to do periodic work which relies on relatively up to date statistics. */
struct seq *
udpif_dump_seq(struct udpif *udpif)
{
return udpif->dump_seq;
}
void
udpif_get_memory_usage(struct udpif *udpif, struct simap *usage)
{
size_t i;
simap_increase(usage, "dispatchers", 1);
simap_increase(usage, "flow_dumpers", 1);
simap_increase(usage, "handlers", udpif->n_handlers);
for (i = 0; i < udpif->n_handlers; i++) {
struct handler *handler = &udpif->handlers[i];
ovs_mutex_lock(&handler->mutex);
simap_increase(usage, "handler upcalls", handler->n_upcalls);
ovs_mutex_unlock(&handler->mutex);
}
simap_increase(usage, "revalidators", udpif->n_revalidators);
for (i = 0; i < udpif->n_revalidators; i++) {
struct revalidator *revalidator = &udpif->revalidators[i];
ovs_mutex_lock(&revalidator->mutex);
simap_increase(usage, "revalidator dumps", revalidator->n_udumps);
/* XXX: This isn't technically thread safe because the revalidator
* ukeys maps isn't protected by a mutex since it's per thread. */
simap_increase(usage, "revalidator keys",
hmap_count(&revalidator->ukeys));
ovs_mutex_unlock(&revalidator->mutex);
}
}
/* Removes all flows from all datapaths. */
void
udpif_flush(void)
{
struct udpif *udpif;
LIST_FOR_EACH (udpif, list_node, &all_udpifs) {
dpif_flow_flush(udpif->dpif);
}
}
/* Destroys and deallocates 'upcall'. */
static void
upcall_destroy(struct upcall *upcall)
{
if (upcall) {
ofpbuf_uninit(&upcall->dpif_upcall.packet);
ofpbuf_uninit(&upcall->upcall_buf);
free(upcall);
}
}
static uint64_t
udpif_get_n_flows(struct udpif *udpif)
{
long long int time, now;
uint64_t flow_count;
now = time_msec();
atomic_read(&udpif->n_flows_timestamp, &time);
if (time < now - 100 && !ovs_mutex_trylock(&udpif->n_flows_mutex)) {
struct dpif_dp_stats stats;
atomic_store(&udpif->n_flows_timestamp, now);
dpif_get_dp_stats(udpif->dpif, &stats);
flow_count = stats.n_flows;
atomic_store(&udpif->n_flows, flow_count);
ovs_mutex_unlock(&udpif->n_flows_mutex);
} else {
atomic_read(&udpif->n_flows, &flow_count);
}
return flow_count;
}
/* The dispatcher thread is responsible for receiving upcalls from the kernel,
* assigning them to a upcall_handler thread. */
static void *
udpif_dispatcher(void *arg)
{
struct udpif *udpif = arg;
set_subprogram_name("dispatcher");
while (!latch_is_set(&udpif->exit_latch)) {
recv_upcalls(udpif);
dpif_recv_wait(udpif->dpif);
latch_wait(&udpif->exit_latch);
poll_block();
}
return NULL;
}
static void *
udpif_flow_dumper(void *arg)
{
struct udpif *udpif = arg;
set_subprogram_name("flow_dumper");
while (!latch_is_set(&udpif->exit_latch)) {
const struct dpif_flow_stats *stats;
long long int start_time, duration;
const struct nlattr *key, *mask;
struct dpif_flow_dump dump;
size_t key_len, mask_len;
unsigned int flow_limit;
bool need_revalidate;
uint64_t reval_seq;
size_t n_flows, i;
reval_seq = seq_read(udpif->reval_seq);
need_revalidate = udpif->last_reval_seq != reval_seq;
udpif->last_reval_seq = reval_seq;
n_flows = udpif_get_n_flows(udpif);
udpif->max_n_flows = MAX(n_flows, udpif->max_n_flows);
udpif->avg_n_flows = (udpif->avg_n_flows + n_flows) / 2;
start_time = time_msec();
dpif_flow_dump_start(&dump, udpif->dpif);
while (dpif_flow_dump_next(&dump, &key, &key_len, &mask, &mask_len,
NULL, NULL, &stats)
&& !latch_is_set(&udpif->exit_latch)) {
struct udpif_flow_dump *udump = xmalloc(sizeof *udump);
struct revalidator *revalidator;
udump->key_hash = hash_bytes(key, key_len, udpif->secret);
memcpy(&udump->key_buf, key, key_len);
udump->key = (struct nlattr *) &udump->key_buf;
udump->key_len = key_len;
memcpy(&udump->mask_buf, mask, mask_len);
udump->mask = (struct nlattr *) &udump->mask_buf;
udump->mask_len = mask_len;
udump->stats = *stats;
udump->need_revalidate = need_revalidate;
revalidator = &udpif->revalidators[udump->key_hash
% udpif->n_revalidators];
ovs_mutex_lock(&revalidator->mutex);
while (revalidator->n_udumps >= REVALIDATE_MAX_BATCH * 3
&& !latch_is_set(&udpif->exit_latch)) {
ovs_mutex_cond_wait(&revalidator->wake_cond,
&revalidator->mutex);
}
list_push_back(&revalidator->udumps, &udump->list_node);
revalidator->n_udumps++;
xpthread_cond_signal(&revalidator->wake_cond);
ovs_mutex_unlock(&revalidator->mutex);
}
dpif_flow_dump_done(&dump);
/* Let all the revalidators finish and garbage collect. */
seq_change(udpif->dump_seq);
for (i = 0; i < udpif->n_revalidators; i++) {
struct revalidator *revalidator = &udpif->revalidators[i];
ovs_mutex_lock(&revalidator->mutex);
xpthread_cond_signal(&revalidator->wake_cond);
ovs_mutex_unlock(&revalidator->mutex);
}
for (i = 0; i < udpif->n_revalidators; i++) {
struct revalidator *revalidator = &udpif->revalidators[i];
ovs_mutex_lock(&revalidator->mutex);
while (revalidator->dump_seq != seq_read(udpif->dump_seq)
&& !latch_is_set(&udpif->exit_latch)) {
ovs_mutex_cond_wait(&revalidator->wake_cond,
&revalidator->mutex);
}
ovs_mutex_unlock(&revalidator->mutex);
}
duration = MAX(time_msec() - start_time, 1);
udpif->dump_duration = duration;
atomic_read(&udpif->flow_limit, &flow_limit);
if (duration > 2000) {
flow_limit /= duration / 1000;
} else if (duration > 1300) {
flow_limit = flow_limit * 3 / 4;
} else if (duration < 1000 && n_flows > 2000
&& flow_limit < n_flows * 1000 / duration) {
flow_limit += 1000;
}
flow_limit = MIN(ofproto_flow_limit, MAX(flow_limit, 1000));
atomic_store(&udpif->flow_limit, flow_limit);
if (duration > 2000) {
VLOG_INFO("Spent an unreasonably long %lldms dumping flows",
duration);
}
poll_timer_wait_until(start_time + MIN(ofproto_max_idle, 500));
seq_wait(udpif->reval_seq, udpif->last_reval_seq);
latch_wait(&udpif->exit_latch);
poll_block();
}
return NULL;
}
/* The miss handler thread is responsible for processing miss upcalls retrieved
* by the dispatcher thread. Once finished it passes the processed miss
* upcalls to ofproto-dpif where they're installed in the datapath. */
static void *
udpif_upcall_handler(void *arg)
{
struct handler *handler = arg;
handler->name = xasprintf("handler_%u", ovsthread_id_self());
set_subprogram_name("%s", handler->name);
for (;;) {
struct list misses = LIST_INITIALIZER(&misses);
size_t i;
ovs_mutex_lock(&handler->mutex);
if (latch_is_set(&handler->udpif->exit_latch)) {
ovs_mutex_unlock(&handler->mutex);
return NULL;
}
if (!handler->n_upcalls) {
ovs_mutex_cond_wait(&handler->wake_cond, &handler->mutex);
}
for (i = 0; i < FLOW_MISS_MAX_BATCH; i++) {
if (handler->n_upcalls) {
handler->n_upcalls--;
list_push_back(&misses, list_pop_front(&handler->upcalls));
} else {
break;
}
}
ovs_mutex_unlock(&handler->mutex);
handle_upcalls(handler, &misses);
coverage_clear();
}
}
static void *
udpif_revalidator(void *arg)
{
struct revalidator *revalidator = arg;
revalidator->name = xasprintf("revalidator_%u", ovsthread_id_self());
set_subprogram_name("%s", revalidator->name);
for (;;) {
struct list udumps = LIST_INITIALIZER(&udumps);
struct udpif *udpif = revalidator->udpif;
size_t i;
ovs_mutex_lock(&revalidator->mutex);
if (latch_is_set(&udpif->exit_latch)) {
ovs_mutex_unlock(&revalidator->mutex);
return NULL;
}
if (!revalidator->n_udumps) {
if (revalidator->dump_seq != seq_read(udpif->dump_seq)) {
revalidator->dump_seq = seq_read(udpif->dump_seq);
revalidator_sweep(revalidator);
} else {
ovs_mutex_cond_wait(&revalidator->wake_cond,
&revalidator->mutex);
}
}
for (i = 0; i < REVALIDATE_MAX_BATCH && revalidator->n_udumps; i++) {
list_push_back(&udumps, list_pop_front(&revalidator->udumps));
revalidator->n_udumps--;
}
/* Wake up the flow dumper. */
xpthread_cond_signal(&revalidator->wake_cond);
ovs_mutex_unlock(&revalidator->mutex);
if (!list_is_empty(&udumps)) {
revalidate_udumps(revalidator, &udumps);
}
}
return NULL;
}
static enum upcall_type
classify_upcall(const struct upcall *upcall)
{
const struct dpif_upcall *dpif_upcall = &upcall->dpif_upcall;
union user_action_cookie cookie;
size_t userdata_len;
/* First look at the upcall type. */
switch (dpif_upcall->type) {
case DPIF_UC_ACTION:
break;
case DPIF_UC_MISS:
return MISS_UPCALL;
case DPIF_N_UC_TYPES:
default:
VLOG_WARN_RL(&rl, "upcall has unexpected type %"PRIu32,
dpif_upcall->type);
return BAD_UPCALL;
}
/* "action" upcalls need a closer look. */
if (!dpif_upcall->userdata) {
VLOG_WARN_RL(&rl, "action upcall missing cookie");
return BAD_UPCALL;
}
userdata_len = nl_attr_get_size(dpif_upcall->userdata);
if (userdata_len < sizeof cookie.type
|| userdata_len > sizeof cookie) {
VLOG_WARN_RL(&rl, "action upcall cookie has unexpected size %"PRIuSIZE,
userdata_len);
return BAD_UPCALL;
}
memset(&cookie, 0, sizeof cookie);
memcpy(&cookie, nl_attr_get(dpif_upcall->userdata), userdata_len);
if (userdata_len == MAX(8, sizeof cookie.sflow)
&& cookie.type == USER_ACTION_COOKIE_SFLOW) {
return SFLOW_UPCALL;
} else if (userdata_len == MAX(8, sizeof cookie.slow_path)
&& cookie.type == USER_ACTION_COOKIE_SLOW_PATH) {
return MISS_UPCALL;
} else if (userdata_len == MAX(8, sizeof cookie.flow_sample)
&& cookie.type == USER_ACTION_COOKIE_FLOW_SAMPLE) {
return FLOW_SAMPLE_UPCALL;
} else if (userdata_len == MAX(8, sizeof cookie.ipfix)
&& cookie.type == USER_ACTION_COOKIE_IPFIX) {
return IPFIX_UPCALL;
} else {
VLOG_WARN_RL(&rl, "invalid user cookie of type %"PRIu16
" and size %"PRIuSIZE, cookie.type, userdata_len);
return BAD_UPCALL;
}
}
static void
recv_upcalls(struct udpif *udpif)
{
int n;
for (;;) {
uint32_t hash = udpif->secret;
struct handler *handler;
struct upcall *upcall;
size_t n_bytes, left;
struct nlattr *nla;
int error;
upcall = xmalloc(sizeof *upcall);
ofpbuf_use_stub(&upcall->upcall_buf, upcall->upcall_stub,
sizeof upcall->upcall_stub);
error = dpif_recv(udpif->dpif, &upcall->dpif_upcall,
&upcall->upcall_buf);
if (error) {
/* upcall_destroy() can only be called on successfully received
* upcalls. */
ofpbuf_uninit(&upcall->upcall_buf);
free(upcall);
break;
}
n_bytes = 0;
NL_ATTR_FOR_EACH (nla, left, upcall->dpif_upcall.key,
upcall->dpif_upcall.key_len) {
enum ovs_key_attr type = nl_attr_type(nla);
if (type == OVS_KEY_ATTR_IN_PORT
|| type == OVS_KEY_ATTR_TCP
|| type == OVS_KEY_ATTR_UDP) {
if (nl_attr_get_size(nla) == 4) {
hash = mhash_add(hash, nl_attr_get_u32(nla));
n_bytes += 4;
} else {
VLOG_WARN_RL(&rl,
"Netlink attribute with incorrect size.");
}
}
}
hash = mhash_finish(hash, n_bytes);
handler = &udpif->handlers[hash % udpif->n_handlers];
ovs_mutex_lock(&handler->mutex);
if (handler->n_upcalls < MAX_QUEUE_LENGTH) {
list_push_back(&handler->upcalls, &upcall->list_node);
if (handler->n_upcalls == 0) {
handler->need_signal = true;
}
handler->n_upcalls++;
if (handler->need_signal &&
handler->n_upcalls >= FLOW_MISS_MAX_BATCH) {
handler->need_signal = false;
xpthread_cond_signal(&handler->wake_cond);
}
ovs_mutex_unlock(&handler->mutex);
if (!VLOG_DROP_DBG(&rl)) {
struct ds ds = DS_EMPTY_INITIALIZER;
odp_flow_key_format(upcall->dpif_upcall.key,
upcall->dpif_upcall.key_len,
&ds);
VLOG_DBG("dispatcher: enqueue (%s)", ds_cstr(&ds));
ds_destroy(&ds);
}
} else {
ovs_mutex_unlock(&handler->mutex);
COVERAGE_INC(upcall_queue_overflow);
upcall_destroy(upcall);
}
}
for (n = 0; n < udpif->n_handlers; ++n) {
struct handler *handler = &udpif->handlers[n];
if (handler->need_signal) {
handler->need_signal = false;
ovs_mutex_lock(&handler->mutex);
xpthread_cond_signal(&handler->wake_cond);
ovs_mutex_unlock(&handler->mutex);
}
}
}
/* Calculates slow path actions for 'xout'. 'buf' must statically be
* initialized with at least 128 bytes of space. */
static void
compose_slow_path(struct udpif *udpif, struct xlate_out *xout,
odp_port_t odp_in_port, struct ofpbuf *buf)
{
union user_action_cookie cookie;
odp_port_t port;
uint32_t pid;
cookie.type = USER_ACTION_COOKIE_SLOW_PATH;
cookie.slow_path.unused = 0;
cookie.slow_path.reason = xout->slow;
port = xout->slow & (SLOW_CFM | SLOW_BFD | SLOW_LACP | SLOW_STP)
? ODPP_NONE
: odp_in_port;
pid = dpif_port_get_pid(udpif->dpif, port);
odp_put_userspace_action(pid, &cookie, sizeof cookie.slow_path, buf);
}
static struct flow_miss *
flow_miss_find(struct hmap *todo, const struct ofproto_dpif *ofproto,
const struct flow *flow, uint32_t hash)
{
struct flow_miss *miss;
HMAP_FOR_EACH_WITH_HASH (miss, hmap_node, hash, todo) {
if (miss->ofproto == ofproto && flow_equal(&miss->flow, flow)) {
return miss;
}
}
return NULL;
}
static void
handle_upcalls(struct handler *handler, struct list *upcalls)
{
struct hmap misses = HMAP_INITIALIZER(&misses);
struct udpif *udpif = handler->udpif;
struct flow_miss miss_buf[FLOW_MISS_MAX_BATCH];
struct dpif_op *opsp[FLOW_MISS_MAX_BATCH * 2];
struct dpif_op ops[FLOW_MISS_MAX_BATCH * 2];
struct flow_miss *miss, *next_miss;
struct upcall *upcall, *next;
size_t n_misses, n_ops, i;
unsigned int flow_limit;
bool fail_open, may_put;
enum upcall_type type;
atomic_read(&udpif->flow_limit, &flow_limit);
may_put = udpif_get_n_flows(udpif) < flow_limit;
/* Extract the flow from each upcall. Construct in 'misses' a hash table
* that maps each unique flow to a 'struct flow_miss'.
*
* Most commonly there is a single packet per flow_miss, but there are
* several reasons why there might be more than one, e.g.:
*
* - The dpif packet interface does not support TSO (or UFO, etc.), so a
* large packet sent to userspace is split into a sequence of smaller
* ones.
*
* - A stream of quickly arriving packets in an established "slow-pathed"
* flow.
*
* - Rarely, a stream of quickly arriving packets in a flow not yet
* established. (This is rare because most protocols do not send
* multiple back-to-back packets before receiving a reply from the
* other end of the connection, which gives OVS a chance to set up a
* datapath flow.)
*/
n_misses = 0;
LIST_FOR_EACH_SAFE (upcall, next, list_node, upcalls) {
struct dpif_upcall *dupcall = &upcall->dpif_upcall;
struct flow_miss *miss = &miss_buf[n_misses];
struct ofpbuf *packet = &dupcall->packet;
struct flow_miss *existing_miss;
struct ofproto_dpif *ofproto;
struct dpif_sflow *sflow;
struct dpif_ipfix *ipfix;
odp_port_t odp_in_port;
struct flow flow;
int error;
error = xlate_receive(udpif->backer, packet, dupcall->key,
dupcall->key_len, &flow, &miss->key_fitness,
&ofproto, &ipfix, &sflow, NULL, &odp_in_port);
if (error) {
if (error == ENODEV) {
/* Received packet on datapath port for which we couldn't
* associate an ofproto. This can happen if a port is removed
* while traffic is being received. Print a rate-limited
* message in case it happens frequently. Install a drop flow
* so that future packets of the flow are inexpensively dropped
* in the kernel. */
VLOG_INFO_RL(&rl, "received packet on unassociated datapath "
"port %"PRIu32, odp_in_port);
dpif_flow_put(udpif->dpif, DPIF_FP_CREATE | DPIF_FP_MODIFY,
dupcall->key, dupcall->key_len, NULL, 0, NULL, 0,
NULL);
}
list_remove(&upcall->list_node);
upcall_destroy(upcall);
continue;
}
type = classify_upcall(upcall);
if (type == MISS_UPCALL) {
uint32_t hash;
flow_extract(packet, flow.skb_priority, flow.pkt_mark,
&flow.tunnel, &flow.in_port, &miss->flow);
hash = flow_hash(&miss->flow, 0);
existing_miss = flow_miss_find(&misses, ofproto, &miss->flow,
hash);
if (!existing_miss) {
hmap_insert(&misses, &miss->hmap_node, hash);
miss->ofproto = ofproto;
miss->key = dupcall->key;
miss->key_len = dupcall->key_len;
miss->upcall_type = dupcall->type;