838b8b1d5c366955fd9e243d640b108cbcbcebbf
[sliver-openvswitch.git] / lib / cfm.c
1 /*
2  * Copyright (c) 2010, 2011, 2012 Nicira, Inc.
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 "cfm.h"
19
20 #include <stdint.h>
21 #include <stdlib.h>
22 #include <string.h>
23
24 #include "byte-order.h"
25 #include "dynamic-string.h"
26 #include "flow.h"
27 #include "hash.h"
28 #include "hmap.h"
29 #include "netdev.h"
30 #include "ofpbuf.h"
31 #include "packets.h"
32 #include "poll-loop.h"
33 #include "random.h"
34 #include "timer.h"
35 #include "timeval.h"
36 #include "unixctl.h"
37 #include "vlog.h"
38
39 VLOG_DEFINE_THIS_MODULE(cfm);
40
41 #define CFM_MAX_RMPS 256
42
43 /* Ethernet destination address of CCM packets. */
44 static const uint8_t eth_addr_ccm[6] = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x30 };
45 static const uint8_t eth_addr_ccm_x[6] = {
46     0x01, 0x23, 0x20, 0x00, 0x00, 0x30
47 };
48
49 #define ETH_TYPE_CFM 0x8902
50
51 /* A 'ccm' represents a Continuity Check Message from the 802.1ag
52  * specification.  Continuity Check Messages are broadcast periodically so that
53  * hosts can determine whom they have connectivity to.
54  *
55  * The minimum length of a CCM as specified by IEEE 802.1ag is 75 bytes.
56  * Previous versions of Open vSwitch generated 74-byte CCM messages, so we
57  * accept such messages too. */
58 #define CCM_LEN 75
59 #define CCM_ACCEPT_LEN 74
60 #define CCM_MAID_LEN 48
61 #define CCM_OPCODE 1 /* CFM message opcode meaning CCM. */
62 #define CCM_RDI_MASK 0x80
63 #define CFM_HEALTH_INTERVAL 6
64
65 OVS_PACKED(
66 struct ccm {
67     uint8_t mdlevel_version; /* MD Level and Version */
68     uint8_t opcode;
69     uint8_t flags;
70     uint8_t tlv_offset;
71     ovs_be32 seq;
72     ovs_be16 mpid;
73     uint8_t maid[CCM_MAID_LEN];
74
75     /* Defined by ITU-T Y.1731 should be zero */
76     ovs_be16 interval_ms_x;      /* Transmission interval in ms. */
77     ovs_be64 mpid64;             /* MPID in extended mode. */
78     uint8_t opdown;              /* Operationally down. */
79     uint8_t zero[5];
80
81     /* TLV space. */
82     uint8_t end_tlv;
83 });
84 BUILD_ASSERT_DECL(CCM_LEN == sizeof(struct ccm));
85
86 struct cfm {
87     const char *name;           /* Name of this CFM object. */
88     struct hmap_node hmap_node; /* Node in all_cfms list. */
89
90     struct netdev *netdev;
91     uint64_t rx_packets;        /* Packets received by 'netdev'. */
92
93     uint64_t mpid;
94     bool demand;           /* Demand mode. */
95     bool booted;           /* A full fault interval has occurred. */
96     enum cfm_fault_reason fault;  /* Connectivity fault status. */
97     enum cfm_fault_reason recv_fault;  /* Bit mask of faults occurring on
98                                           receive. */
99     bool opup;             /* Operational State. */
100     bool remote_opup;      /* Remote Operational State. */
101
102     int fault_override;    /* Manual override of 'fault' status.
103                               Ignored if negative. */
104
105     uint32_t seq;          /* The sequence number of our last CCM. */
106     uint8_t ccm_interval;  /* The CCM transmission interval. */
107     int ccm_interval_ms;   /* 'ccm_interval' in milliseconds. */
108     uint16_t ccm_vlan;     /* Vlan tag of CCM PDUs.  CFM_RANDOM_VLAN if
109                               random. */
110     uint8_t ccm_pcp;       /* Priority of CCM PDUs. */
111     uint8_t maid[CCM_MAID_LEN]; /* The MAID of this CFM. */
112
113     struct timer tx_timer;    /* Send CCM when expired. */
114     struct timer fault_timer; /* Check for faults when expired. */
115
116     struct hmap remote_mps;   /* Remote MPs. */
117
118     /* Result of cfm_get_remote_mpids(). Updated only during fault check to
119      * avoid flapping. */
120     uint64_t *rmps_array;     /* Cache of remote_mps. */
121     size_t rmps_array_len;    /* Number of rmps in 'rmps_array'. */
122
123     int health;               /* Percentage of the number of CCM frames
124                                  received. */
125     int health_interval;      /* Number of fault_intervals since health was
126                                  recomputed. */
127     long long int last_tx;    /* Last CCM transmission time. */
128
129     atomic_bool check_tnl_key; /* Verify the tunnel key of inbound packets? */
130     atomic_bool extended;      /* Extended mode. */
131     atomic_int ref_cnt;
132 };
133
134 /* Remote MPs represent foreign network entities that are configured to have
135  * the same MAID as this CFM instance. */
136 struct remote_mp {
137     uint64_t mpid;         /* The Maintenance Point ID of this 'remote_mp'. */
138     struct hmap_node node; /* Node in 'remote_mps' map. */
139
140     bool recv;           /* CCM was received since last fault check. */
141     bool opup;           /* Operational State. */
142     uint32_t seq;        /* Most recently received sequence number. */
143     uint8_t num_health_ccm; /* Number of received ccm frames every
144                                CFM_HEALTH_INTERVAL * 'fault_interval'. */
145     long long int last_rx; /* Last CCM reception time. */
146
147 };
148
149 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(20, 30);
150
151 static struct ovs_mutex mutex = OVS_MUTEX_INITIALIZER;
152 static struct hmap all_cfms__ = HMAP_INITIALIZER(&all_cfms__);
153 static struct hmap *const all_cfms OVS_GUARDED_BY(mutex) = &all_cfms__;
154
155 static unixctl_cb_func cfm_unixctl_show;
156 static unixctl_cb_func cfm_unixctl_set_fault;
157
158 static uint64_t
159 cfm_rx_packets(const struct cfm *cfm) OVS_REQUIRES(mutex)
160 {
161     struct netdev_stats stats;
162
163     if (!netdev_get_stats(cfm->netdev, &stats)) {
164         return stats.rx_packets;
165     } else {
166         return 0;
167     }
168 }
169
170 static const uint8_t *
171 cfm_ccm_addr(const struct cfm *cfm)
172 {
173     bool extended;
174     atomic_read(&cfm->extended, &extended);
175     return extended ? eth_addr_ccm_x : eth_addr_ccm;
176 }
177
178 /* Returns the string representation of the given cfm_fault_reason 'reason'. */
179 const char *
180 cfm_fault_reason_to_str(int reason)
181 {
182     switch (reason) {
183 #define CFM_FAULT_REASON(NAME, STR) case CFM_FAULT_##NAME: return #STR;
184         CFM_FAULT_REASONS
185 #undef CFM_FAULT_REASON
186     default: return "<unknown>";
187     }
188 }
189
190 static void
191 ds_put_cfm_fault(struct ds *ds, int fault)
192 {
193     int i;
194
195     for (i = 0; i < CFM_FAULT_N_REASONS; i++) {
196         int reason = 1 << i;
197
198         if (fault & reason) {
199             ds_put_format(ds, "%s ", cfm_fault_reason_to_str(reason));
200         }
201     }
202
203     ds_chomp(ds, ' ');
204 }
205
206 static void
207 cfm_generate_maid(struct cfm *cfm) OVS_REQUIRES(mutex)
208 {
209     const char *ovs_md_name = "ovs";
210     const char *ovs_ma_name = "ovs";
211     uint8_t *ma_p;
212     size_t md_len, ma_len;
213
214     memset(cfm->maid, 0, CCM_MAID_LEN);
215
216     md_len = strlen(ovs_md_name);
217     ma_len = strlen(ovs_ma_name);
218
219     ovs_assert(md_len && ma_len && md_len + ma_len + 4 <= CCM_MAID_LEN);
220
221     cfm->maid[0] = 4;                           /* MD name string format. */
222     cfm->maid[1] = md_len;                      /* MD name size. */
223     memcpy(&cfm->maid[2], ovs_md_name, md_len); /* MD name. */
224
225     ma_p = cfm->maid + 2 + md_len;
226     ma_p[0] = 2;                           /* MA name string format. */
227     ma_p[1] = ma_len;                      /* MA name size. */
228     memcpy(&ma_p[2], ovs_ma_name, ma_len); /* MA name. */
229 }
230
231 static int
232 ccm_interval_to_ms(uint8_t interval)
233 {
234     switch (interval) {
235     case 0:  NOT_REACHED(); /* Explicitly not supported by 802.1ag. */
236     case 1:  return 3;      /* Not recommended due to timer resolution. */
237     case 2:  return 10;     /* Not recommended due to timer resolution. */
238     case 3:  return 100;
239     case 4:  return 1000;
240     case 5:  return 10000;
241     case 6:  return 60000;
242     case 7:  return 600000;
243     default: NOT_REACHED(); /* Explicitly not supported by 802.1ag. */
244     }
245
246     NOT_REACHED();
247 }
248
249 static long long int
250 cfm_fault_interval(struct cfm *cfm) OVS_REQUIRES(mutex)
251 {
252     /* According to the 802.1ag specification we should assume every other MP
253      * with the same MAID has the same transmission interval that we have.  If
254      * an MP has a different interval, cfm_process_heartbeat will register it
255      * as a fault (likely due to a configuration error).  Thus we can check all
256      * MPs at once making this quite a bit simpler.
257      *
258      * According to the specification we should check when (ccm_interval_ms *
259      * 3.5)ms have passed. */
260     return (cfm->ccm_interval_ms * 7) / 2;
261 }
262
263 static uint8_t
264 ms_to_ccm_interval(int interval_ms)
265 {
266     uint8_t i;
267
268     for (i = 7; i > 0; i--) {
269         if (ccm_interval_to_ms(i) <= interval_ms) {
270             return i;
271         }
272     }
273
274     return 1;
275 }
276
277 static uint32_t
278 hash_mpid(uint64_t mpid)
279 {
280     return hash_bytes(&mpid, sizeof mpid, 0);
281 }
282
283 static bool
284 cfm_is_valid_mpid(bool extended, uint64_t mpid)
285 {
286     /* 802.1ag specification requires MPIDs to be within the range [1, 8191].
287      * In extended mode we relax this requirement. */
288     return mpid >= 1 && (extended || mpid <= 8191);
289 }
290
291 static struct remote_mp *
292 lookup_remote_mp(const struct cfm *cfm, uint64_t mpid) OVS_REQUIRES(mutex)
293 {
294     struct remote_mp *rmp;
295
296     HMAP_FOR_EACH_IN_BUCKET (rmp, node, hash_mpid(mpid), &cfm->remote_mps) {
297         if (rmp->mpid == mpid) {
298             return rmp;
299         }
300     }
301
302     return NULL;
303 }
304
305 void
306 cfm_init(void)
307 {
308     unixctl_command_register("cfm/show", "[interface]", 0, 1, cfm_unixctl_show,
309                              NULL);
310     unixctl_command_register("cfm/set-fault", "[interface] normal|false|true",
311                              1, 2, cfm_unixctl_set_fault, NULL);
312 }
313
314 /* Allocates a 'cfm' object called 'name'.  'cfm' should be initialized by
315  * cfm_configure() before use. */
316 struct cfm *
317 cfm_create(const struct netdev *netdev) OVS_EXCLUDED(mutex)
318 {
319     struct cfm *cfm;
320
321     cfm = xzalloc(sizeof *cfm);
322     cfm->netdev = netdev_ref(netdev);
323     cfm->name = netdev_get_name(cfm->netdev);
324     hmap_init(&cfm->remote_mps);
325     cfm->remote_opup = true;
326     cfm->fault_override = -1;
327     cfm->health = -1;
328     cfm->last_tx = 0;
329     atomic_init(&cfm->extended, false);
330     atomic_init(&cfm->check_tnl_key, false);
331     atomic_init(&cfm->ref_cnt, 1);
332
333     ovs_mutex_lock(&mutex);
334     cfm_generate_maid(cfm);
335     hmap_insert(all_cfms, &cfm->hmap_node, hash_string(cfm->name, 0));
336     ovs_mutex_unlock(&mutex);
337     return cfm;
338 }
339
340 void
341 cfm_unref(struct cfm *cfm) OVS_EXCLUDED(mutex)
342 {
343     struct remote_mp *rmp, *rmp_next;
344     int orig;
345
346     if (!cfm) {
347         return;
348     }
349
350     atomic_sub(&cfm->ref_cnt, 1, &orig);
351     ovs_assert(orig > 0);
352     if (orig != 1) {
353         return;
354     }
355
356     ovs_mutex_lock(&mutex);
357     hmap_remove(all_cfms, &cfm->hmap_node);
358     ovs_mutex_unlock(&mutex);
359
360     HMAP_FOR_EACH_SAFE (rmp, rmp_next, node, &cfm->remote_mps) {
361         hmap_remove(&cfm->remote_mps, &rmp->node);
362         free(rmp);
363     }
364
365     hmap_destroy(&cfm->remote_mps);
366     netdev_close(cfm->netdev);
367     free(cfm->rmps_array);
368     free(cfm);
369 }
370
371 struct cfm *
372 cfm_ref(const struct cfm *cfm_)
373 {
374     struct cfm *cfm = CONST_CAST(struct cfm *, cfm_);
375     if (cfm) {
376         int orig;
377         atomic_add(&cfm->ref_cnt, 1, &orig);
378         ovs_assert(orig > 0);
379     }
380     return cfm;
381 }
382
383 /* Should be run periodically to update fault statistics messages. */
384 void
385 cfm_run(struct cfm *cfm) OVS_EXCLUDED(mutex)
386 {
387     ovs_mutex_lock(&mutex);
388     if (timer_expired(&cfm->fault_timer)) {
389         long long int interval = cfm_fault_interval(cfm);
390         struct remote_mp *rmp, *rmp_next;
391         bool old_cfm_fault = cfm->fault;
392         bool demand_override;
393         bool rmp_set_opup = false;
394         bool rmp_set_opdown = false;
395
396         cfm->fault = cfm->recv_fault;
397         cfm->recv_fault = 0;
398
399         cfm->rmps_array_len = 0;
400         free(cfm->rmps_array);
401         cfm->rmps_array = xmalloc(hmap_count(&cfm->remote_mps) *
402                                   sizeof *cfm->rmps_array);
403
404         if (cfm->health_interval == CFM_HEALTH_INTERVAL) {
405             /* Calculate the cfm health of the interface.  If the number of
406              * remote_mpids of a cfm interface is > 1, the cfm health is
407              * undefined. If the number of remote_mpids is 1, the cfm health is
408              * the percentage of the ccm frames received in the
409              * (CFM_HEALTH_INTERVAL * 3.5)ms, else it is 0. */
410             if (hmap_count(&cfm->remote_mps) > 1) {
411                 cfm->health = -1;
412             } else if (hmap_is_empty(&cfm->remote_mps)) {
413                 cfm->health = 0;
414             } else {
415                 int exp_ccm_recvd;
416
417                 rmp = CONTAINER_OF(hmap_first(&cfm->remote_mps),
418                                    struct remote_mp, node);
419                 exp_ccm_recvd = (CFM_HEALTH_INTERVAL * 7) / 2;
420                 /* Calculate the percentage of healthy ccm frames received.
421                  * Since the 'fault_interval' is (3.5 * cfm_interval), and
422                  * 1 CCM packet must be received every cfm_interval,
423                  * the 'remote_mpid' health reports the percentage of
424                  * healthy CCM frames received every
425                  * 'CFM_HEALTH_INTERVAL'th 'fault_interval'. */
426                 cfm->health = (rmp->num_health_ccm * 100) / exp_ccm_recvd;
427                 cfm->health = MIN(cfm->health, 100);
428                 rmp->num_health_ccm = 0;
429                 ovs_assert(cfm->health >= 0 && cfm->health <= 100);
430             }
431             cfm->health_interval = 0;
432         }
433         cfm->health_interval++;
434
435         demand_override = false;
436         if (cfm->demand) {
437             uint64_t rx_packets = cfm_rx_packets(cfm);
438             demand_override = hmap_count(&cfm->remote_mps) == 1
439                 && rx_packets > cfm->rx_packets;
440             cfm->rx_packets = rx_packets;
441         }
442
443         HMAP_FOR_EACH_SAFE (rmp, rmp_next, node, &cfm->remote_mps) {
444             if (!rmp->recv) {
445                 VLOG_INFO("%s: Received no CCM from RMP %"PRIu64" in the last"
446                           " %lldms", cfm->name, rmp->mpid,
447                           time_msec() - rmp->last_rx);
448                 if (!demand_override) {
449                     hmap_remove(&cfm->remote_mps, &rmp->node);
450                     free(rmp);
451                 }
452             } else {
453                 rmp->recv = false;
454
455                 if (rmp->opup) {
456                     rmp_set_opup = true;
457                 } else {
458                     rmp_set_opdown = true;
459                 }
460
461                 cfm->rmps_array[cfm->rmps_array_len++] = rmp->mpid;
462             }
463         }
464
465         if (rmp_set_opdown) {
466             cfm->remote_opup = false;
467         }
468         else if (rmp_set_opup) {
469             cfm->remote_opup = true;
470         }
471
472         if (hmap_is_empty(&cfm->remote_mps)) {
473             cfm->fault |= CFM_FAULT_RECV;
474         }
475
476         if (old_cfm_fault != cfm->fault && !VLOG_DROP_INFO(&rl)) {
477             struct ds ds = DS_EMPTY_INITIALIZER;
478
479             ds_put_cstr(&ds, "from [");
480             ds_put_cfm_fault(&ds, old_cfm_fault);
481             ds_put_cstr(&ds, "] to [");
482             ds_put_cfm_fault(&ds, cfm->fault);
483             ds_put_char(&ds, ']');
484             VLOG_INFO("%s: CFM faults changed %s.", cfm->name, ds_cstr(&ds));
485             ds_destroy(&ds);
486         }
487
488         cfm->booted = true;
489         timer_set_duration(&cfm->fault_timer, interval);
490         VLOG_DBG("%s: new fault interval", cfm->name);
491     }
492     ovs_mutex_unlock(&mutex);
493 }
494
495 /* Should be run periodically to check if the CFM module has a CCM message it
496  * wishes to send. */
497 bool
498 cfm_should_send_ccm(struct cfm *cfm) OVS_EXCLUDED(mutex)
499 {
500     bool ret;
501
502     ovs_mutex_lock(&mutex);
503     ret = timer_expired(&cfm->tx_timer);
504     ovs_mutex_unlock(&mutex);
505     return ret;
506 }
507
508 /* Composes a CCM message into 'packet'.  Messages generated with this function
509  * should be sent whenever cfm_should_send_ccm() indicates. */
510 void
511 cfm_compose_ccm(struct cfm *cfm, struct ofpbuf *packet,
512                 uint8_t eth_src[ETH_ADDR_LEN]) OVS_EXCLUDED(mutex)
513 {
514     uint16_t ccm_vlan;
515     struct ccm *ccm;
516     bool extended;
517
518     ovs_mutex_lock(&mutex);
519     timer_set_duration(&cfm->tx_timer, cfm->ccm_interval_ms);
520     eth_compose(packet, cfm_ccm_addr(cfm), eth_src, ETH_TYPE_CFM, sizeof *ccm);
521
522     ccm_vlan = (cfm->ccm_vlan != CFM_RANDOM_VLAN
523                 ? cfm->ccm_vlan
524                 : random_uint16());
525     ccm_vlan = ccm_vlan & VLAN_VID_MASK;
526
527     if (ccm_vlan || cfm->ccm_pcp) {
528         uint16_t tci = ccm_vlan | (cfm->ccm_pcp << VLAN_PCP_SHIFT);
529         eth_push_vlan(packet, htons(tci));
530     }
531
532     ccm = packet->l3;
533     ccm->mdlevel_version = 0;
534     ccm->opcode = CCM_OPCODE;
535     ccm->tlv_offset = 70;
536     ccm->seq = htonl(++cfm->seq);
537     ccm->flags = cfm->ccm_interval;
538     memcpy(ccm->maid, cfm->maid, sizeof ccm->maid);
539     memset(ccm->zero, 0, sizeof ccm->zero);
540     ccm->end_tlv = 0;
541
542     atomic_read(&cfm->extended, &extended);
543     if (extended) {
544         ccm->mpid = htons(hash_mpid(cfm->mpid));
545         ccm->mpid64 = htonll(cfm->mpid);
546         ccm->opdown = !cfm->opup;
547     } else {
548         ccm->mpid = htons(cfm->mpid);
549         ccm->mpid64 = htonll(0);
550         ccm->opdown = 0;
551     }
552
553     if (cfm->ccm_interval == 0) {
554         ovs_assert(extended);
555         ccm->interval_ms_x = htons(cfm->ccm_interval_ms);
556     } else {
557         ccm->interval_ms_x = htons(0);
558     }
559
560     if (cfm->booted && hmap_is_empty(&cfm->remote_mps)) {
561         ccm->flags |= CCM_RDI_MASK;
562     }
563
564     if (cfm->last_tx) {
565         long long int delay = time_msec() - cfm->last_tx;
566         if (delay > (cfm->ccm_interval_ms * 3 / 2)) {
567             VLOG_WARN("%s: long delay of %lldms (expected %dms) sending CCM"
568                       " seq %"PRIu32, cfm->name, delay, cfm->ccm_interval_ms,
569                       cfm->seq);
570         }
571     }
572     cfm->last_tx = time_msec();
573     ovs_mutex_unlock(&mutex);
574 }
575
576 void
577 cfm_wait(struct cfm *cfm) OVS_EXCLUDED(mutex)
578 {
579     ovs_mutex_lock(&mutex);
580     timer_wait(&cfm->tx_timer);
581     timer_wait(&cfm->fault_timer);
582     ovs_mutex_unlock(&mutex);
583 }
584
585 /* Configures 'cfm' with settings from 's'. */
586 bool
587 cfm_configure(struct cfm *cfm, const struct cfm_settings *s)
588     OVS_EXCLUDED(mutex)
589 {
590     uint8_t interval;
591     int interval_ms;
592
593     if (!cfm_is_valid_mpid(s->extended, s->mpid) || s->interval <= 0) {
594         return false;
595     }
596
597     ovs_mutex_lock(&mutex);
598     cfm->mpid = s->mpid;
599     cfm->opup = s->opup;
600     interval = ms_to_ccm_interval(s->interval);
601     interval_ms = ccm_interval_to_ms(interval);
602
603     atomic_store(&cfm->check_tnl_key, s->check_tnl_key);
604     atomic_store(&cfm->extended, s->extended);
605
606     cfm->ccm_vlan = s->ccm_vlan;
607     cfm->ccm_pcp = s->ccm_pcp & (VLAN_PCP_MASK >> VLAN_PCP_SHIFT);
608     if (s->extended && interval_ms != s->interval) {
609         interval = 0;
610         interval_ms = MIN(s->interval, UINT16_MAX);
611     }
612
613     if (s->extended && s->demand) {
614         interval_ms = MAX(interval_ms, 500);
615         if (!cfm->demand) {
616             cfm->demand = true;
617             cfm->rx_packets = cfm_rx_packets(cfm);
618         }
619     } else {
620         cfm->demand = false;
621     }
622
623     if (interval != cfm->ccm_interval || interval_ms != cfm->ccm_interval_ms) {
624         cfm->ccm_interval = interval;
625         cfm->ccm_interval_ms = interval_ms;
626
627         timer_set_expired(&cfm->tx_timer);
628         timer_set_duration(&cfm->fault_timer, cfm_fault_interval(cfm));
629     }
630
631     ovs_mutex_unlock(&mutex);
632     return true;
633 }
634
635 /* Must be called when the netdev owned by 'cfm' should change. */
636 void
637 cfm_set_netdev(struct cfm *cfm, const struct netdev *netdev)
638     OVS_EXCLUDED(mutex)
639 {
640     ovs_mutex_lock(&mutex);
641     if (cfm->netdev != netdev) {
642         netdev_close(cfm->netdev);
643         cfm->netdev = netdev_ref(netdev);
644     }
645     ovs_mutex_unlock(&mutex);
646 }
647
648 /* Returns true if 'cfm' should process packets from 'flow'.  Sets
649  * fields in 'wc' that were used to make the determination. */
650 bool
651 cfm_should_process_flow(const struct cfm *cfm, const struct flow *flow,
652                         struct flow_wildcards *wc)
653 {
654     bool check_tnl_key;
655
656     atomic_read(&cfm->check_tnl_key, &check_tnl_key);
657     memset(&wc->masks.dl_dst, 0xff, sizeof wc->masks.dl_dst);
658     if (check_tnl_key) {
659         memset(&wc->masks.tunnel.tun_id, 0xff, sizeof wc->masks.tunnel.tun_id);
660     }
661     return (ntohs(flow->dl_type) == ETH_TYPE_CFM
662             && eth_addr_equals(flow->dl_dst, cfm_ccm_addr(cfm))
663             && (!check_tnl_key || flow->tunnel.tun_id == htonll(0)));
664 }
665
666 /* Updates internal statistics relevant to packet 'p'.  Should be called on
667  * every packet whose flow returned true when passed to
668  * cfm_should_process_flow. */
669 void
670 cfm_process_heartbeat(struct cfm *cfm, const struct ofpbuf *p)
671     OVS_EXCLUDED(mutex)
672 {
673     struct ccm *ccm;
674     struct eth_header *eth;
675
676     ovs_mutex_lock(&mutex);
677
678     eth = p->l2;
679     ccm = ofpbuf_at(p, (uint8_t *)p->l3 - (uint8_t *)p->data, CCM_ACCEPT_LEN);
680
681     if (!ccm) {
682         VLOG_INFO_RL(&rl, "%s: Received an unparseable 802.1ag CCM heartbeat.",
683                      cfm->name);
684         goto out;
685     }
686
687     if (ccm->opcode != CCM_OPCODE) {
688         VLOG_INFO_RL(&rl, "%s: Received an unsupported 802.1ag message. "
689                      "(opcode %u)", cfm->name, ccm->opcode);
690         goto out;
691     }
692
693     /* According to the 802.1ag specification, reception of a CCM with an
694      * incorrect ccm_interval, unexpected MAID, or unexpected MPID should
695      * trigger a fault.  We ignore this requirement for several reasons.
696      *
697      * Faults can cause a controller or Open vSwitch to make potentially
698      * expensive changes to the network topology.  It seems prudent to trigger
699      * them judiciously, especially when CFM is used to check slave status of
700      * bonds. Furthermore, faults can be maliciously triggered by crafting
701      * unexpected CCMs. */
702     if (memcmp(ccm->maid, cfm->maid, sizeof ccm->maid)) {
703         cfm->recv_fault |= CFM_FAULT_MAID;
704         VLOG_WARN_RL(&rl, "%s: Received unexpected remote MAID from MAC "
705                      ETH_ADDR_FMT, cfm->name, ETH_ADDR_ARGS(eth->eth_src));
706     } else {
707         uint8_t ccm_interval = ccm->flags & 0x7;
708         bool ccm_rdi = ccm->flags & CCM_RDI_MASK;
709         uint16_t ccm_interval_ms_x = ntohs(ccm->interval_ms_x);
710
711         struct remote_mp *rmp;
712         uint64_t ccm_mpid;
713         uint32_t ccm_seq;
714         bool ccm_opdown;
715         bool extended;
716         enum cfm_fault_reason cfm_fault = 0;
717
718         atomic_read(&cfm->extended, &extended);
719         if (extended) {
720             ccm_mpid = ntohll(ccm->mpid64);
721             ccm_opdown = ccm->opdown;
722         } else {
723             ccm_mpid = ntohs(ccm->mpid);
724             ccm_opdown = false;
725         }
726         ccm_seq = ntohl(ccm->seq);
727
728         if (ccm_interval != cfm->ccm_interval) {
729             cfm_fault |= CFM_FAULT_INTERVAL;
730             VLOG_WARN_RL(&rl, "%s: received a CCM with an unexpected interval"
731                          " (%"PRIu8") from RMP %"PRIu64, cfm->name,
732                          ccm_interval, ccm_mpid);
733         }
734
735         if (extended && ccm_interval == 0
736             && ccm_interval_ms_x != cfm->ccm_interval_ms) {
737             cfm_fault |= CFM_FAULT_INTERVAL;
738             VLOG_WARN_RL(&rl, "%s: received a CCM with an unexpected extended"
739                          " interval (%"PRIu16"ms) from RMP %"PRIu64, cfm->name,
740                          ccm_interval_ms_x, ccm_mpid);
741         }
742
743         rmp = lookup_remote_mp(cfm, ccm_mpid);
744         if (!rmp) {
745             if (hmap_count(&cfm->remote_mps) < CFM_MAX_RMPS) {
746                 rmp = xzalloc(sizeof *rmp);
747                 hmap_insert(&cfm->remote_mps, &rmp->node, hash_mpid(ccm_mpid));
748             } else {
749                 cfm_fault |= CFM_FAULT_OVERFLOW;
750                 VLOG_WARN_RL(&rl,
751                              "%s: dropped CCM with MPID %"PRIu64" from MAC "
752                              ETH_ADDR_FMT, cfm->name, ccm_mpid,
753                              ETH_ADDR_ARGS(eth->eth_src));
754             }
755         }
756
757         if (ccm_rdi) {
758             cfm_fault |= CFM_FAULT_RDI;
759             VLOG_DBG("%s: RDI bit flagged from RMP %"PRIu64, cfm->name,
760                      ccm_mpid);
761         }
762
763         VLOG_DBG("%s: received CCM (seq %"PRIu32") (mpid %"PRIu64")"
764                  " (interval %"PRIu8") (RDI %s)", cfm->name, ccm_seq,
765                  ccm_mpid, ccm_interval, ccm_rdi ? "true" : "false");
766
767         if (rmp) {
768             if (rmp->mpid == cfm->mpid) {
769                 cfm_fault |= CFM_FAULT_LOOPBACK;
770                 VLOG_WARN_RL(&rl,"%s: received CCM with local MPID"
771                              " %"PRIu64, cfm->name, rmp->mpid);
772             }
773
774             if (rmp->seq && ccm_seq != (rmp->seq + 1)) {
775                 VLOG_WARN_RL(&rl, "%s: (mpid %"PRIu64") detected sequence"
776                              " numbers which indicate possible connectivity"
777                              " problems (previous %"PRIu32") (current %"PRIu32
778                              ")", cfm->name, ccm_mpid, rmp->seq, ccm_seq);
779             }
780
781             rmp->mpid = ccm_mpid;
782             if (!cfm_fault) {
783                 rmp->num_health_ccm++;
784             }
785             rmp->recv = true;
786             cfm->recv_fault |= cfm_fault;
787             rmp->seq = ccm_seq;
788             rmp->opup = !ccm_opdown;
789             rmp->last_rx = time_msec();
790         }
791     }
792
793 out:
794     ovs_mutex_unlock(&mutex);
795 }
796
797 static int
798 cfm_get_fault__(const struct cfm *cfm) OVS_REQUIRES(mutex)
799 {
800     if (cfm->fault_override >= 0) {
801         return cfm->fault_override ? CFM_FAULT_OVERRIDE : 0;
802     }
803     return cfm->fault;
804 }
805
806 /* Gets the fault status of 'cfm'.  Returns a bit mask of 'cfm_fault_reason's
807  * indicating the cause of the connectivity fault, or zero if there is no
808  * fault. */
809 int
810 cfm_get_fault(const struct cfm *cfm) OVS_EXCLUDED(mutex)
811 {
812     int fault;
813
814     ovs_mutex_lock(&mutex);
815     fault = cfm_get_fault__(cfm);
816     ovs_mutex_unlock(&mutex);
817     return fault;
818 }
819
820 /* Gets the health of 'cfm'.  Returns an integer between 0 and 100 indicating
821  * the health of the link as a percentage of ccm frames received in
822  * CFM_HEALTH_INTERVAL * 'fault_interval' if there is only 1 remote_mpid,
823  * returns 0 if there are no remote_mpids, and returns -1 if there are more
824  * than 1 remote_mpids. */
825 int
826 cfm_get_health(const struct cfm *cfm) OVS_EXCLUDED(mutex)
827 {
828     int health;
829
830     ovs_mutex_lock(&mutex);
831     health = cfm->health;
832     ovs_mutex_unlock(&mutex);
833     return health;
834 }
835
836 /* Gets the operational state of 'cfm'.  'cfm' is considered operationally down
837  * if it has received a CCM with the operationally down bit set from any of its
838  * remote maintenance points. Returns 1 if 'cfm' is operationally up, 0 if
839  * 'cfm' is operationally down, or -1 if 'cfm' has no operational state
840  * (because it isn't in extended mode). */
841 int
842 cfm_get_opup(const struct cfm *cfm) OVS_EXCLUDED(mutex)
843 {
844     bool extended;
845     int opup;
846
847     ovs_mutex_lock(&mutex);
848     atomic_read(&cfm->extended, &extended);
849     opup = extended ? cfm->remote_opup : -1;
850     ovs_mutex_unlock(&mutex);
851
852     return opup;
853 }
854
855 /* Populates 'rmps' with an array of remote maintenance points reachable by
856  * 'cfm'. The number of remote maintenance points is written to 'n_rmps'.
857  * 'cfm' retains ownership of the array written to 'rmps' */
858 void
859 cfm_get_remote_mpids(const struct cfm *cfm, uint64_t **rmps, size_t *n_rmps)
860     OVS_EXCLUDED(mutex)
861 {
862     ovs_mutex_lock(&mutex);
863     *rmps = xmemdup(cfm->rmps_array, cfm->rmps_array_len);
864     *n_rmps = cfm->rmps_array_len;
865     ovs_mutex_unlock(&mutex);
866 }
867
868 static struct cfm *
869 cfm_find(const char *name) OVS_REQUIRES(&mutex)
870 {
871     struct cfm *cfm;
872
873     HMAP_FOR_EACH_WITH_HASH (cfm, hmap_node, hash_string(name, 0), all_cfms) {
874         if (!strcmp(cfm->name, name)) {
875             return cfm;
876         }
877     }
878     return NULL;
879 }
880
881 static void
882 cfm_print_details(struct ds *ds, const struct cfm *cfm) OVS_REQUIRES(&mutex)
883 {
884     struct remote_mp *rmp;
885     bool extended;
886     int fault;
887
888     atomic_read(&cfm->extended, &extended);
889
890     ds_put_format(ds, "---- %s ----\n", cfm->name);
891     ds_put_format(ds, "MPID %"PRIu64":%s%s\n", cfm->mpid,
892                   extended ? " extended" : "",
893                   cfm->fault_override >= 0 ? " fault_override" : "");
894
895     fault = cfm_get_fault__(cfm);
896     if (fault) {
897         ds_put_cstr(ds, "\tfault: ");
898         ds_put_cfm_fault(ds, fault);
899         ds_put_cstr(ds, "\n");
900     }
901
902     if (cfm->health == -1) {
903         ds_put_format(ds, "\taverage health: undefined\n");
904     } else {
905         ds_put_format(ds, "\taverage health: %d\n", cfm->health);
906     }
907     ds_put_format(ds, "\topstate: %s\n", cfm->opup ? "up" : "down");
908     ds_put_format(ds, "\tremote_opstate: %s\n",
909                   cfm->remote_opup ? "up" : "down");
910     ds_put_format(ds, "\tinterval: %dms\n", cfm->ccm_interval_ms);
911     ds_put_format(ds, "\tnext CCM tx: %lldms\n",
912                   timer_msecs_until_expired(&cfm->tx_timer));
913     ds_put_format(ds, "\tnext fault check: %lldms\n",
914                   timer_msecs_until_expired(&cfm->fault_timer));
915
916     HMAP_FOR_EACH (rmp, node, &cfm->remote_mps) {
917         ds_put_format(ds, "Remote MPID %"PRIu64"\n", rmp->mpid);
918         ds_put_format(ds, "\trecv since check: %s\n",
919                       rmp->recv ? "true" : "false");
920         ds_put_format(ds, "\topstate: %s\n", rmp->opup? "up" : "down");
921     }
922 }
923
924 static void
925 cfm_unixctl_show(struct unixctl_conn *conn, int argc, const char *argv[],
926                  void *aux OVS_UNUSED) OVS_EXCLUDED(mutex)
927 {
928     struct ds ds = DS_EMPTY_INITIALIZER;
929     const struct cfm *cfm;
930
931     ovs_mutex_lock(&mutex);
932     if (argc > 1) {
933         cfm = cfm_find(argv[1]);
934         if (!cfm) {
935             unixctl_command_reply_error(conn, "no such CFM object");
936             goto out;
937         }
938         cfm_print_details(&ds, cfm);
939     } else {
940         HMAP_FOR_EACH (cfm, hmap_node, all_cfms) {
941             cfm_print_details(&ds, cfm);
942         }
943     }
944
945     unixctl_command_reply(conn, ds_cstr(&ds));
946     ds_destroy(&ds);
947 out:
948     ovs_mutex_unlock(&mutex);
949 }
950
951 static void
952 cfm_unixctl_set_fault(struct unixctl_conn *conn, int argc, const char *argv[],
953                       void *aux OVS_UNUSED) OVS_EXCLUDED(mutex)
954 {
955     const char *fault_str = argv[argc - 1];
956     int fault_override;
957     struct cfm *cfm;
958
959     ovs_mutex_lock(&mutex);
960     if (!strcasecmp("true", fault_str)) {
961         fault_override = 1;
962     } else if (!strcasecmp("false", fault_str)) {
963         fault_override = 0;
964     } else if (!strcasecmp("normal", fault_str)) {
965         fault_override = -1;
966     } else {
967         unixctl_command_reply_error(conn, "unknown fault string");
968         goto out;
969     }
970
971     if (argc > 2) {
972         cfm = cfm_find(argv[1]);
973         if (!cfm) {
974             unixctl_command_reply_error(conn, "no such CFM object");
975             goto out;
976         }
977         cfm->fault_override = fault_override;
978     } else {
979         HMAP_FOR_EACH (cfm, hmap_node, all_cfms) {
980             cfm->fault_override = fault_override;
981         }
982     }
983
984     unixctl_command_reply(conn, "OK");
985
986 out:
987     ovs_mutex_unlock(&mutex);
988 }