Added handling of previously ignored cfm faults.
[sliver-openvswitch.git] / lib / cfm.c
1 /*
2  * Copyright (c) 2010, 2011 Nicira Networks.
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 <assert.h>
21 #include <stdint.h>
22 #include <stdlib.h>
23 #include <string.h>
24
25 #include "byte-order.h"
26 #include "dynamic-string.h"
27 #include "flow.h"
28 #include "hash.h"
29 #include "hmap.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 struct ccm {
65     uint8_t  mdlevel_version; /* MD Level and Version */
66     uint8_t  opcode;
67     uint8_t  flags;
68     uint8_t  tlv_offset;
69     ovs_be32 seq;
70     ovs_be16 mpid;
71     uint8_t  maid[CCM_MAID_LEN];
72
73     /* Defined by ITU-T Y.1731 should be zero */
74     ovs_be16 interval_ms_x;      /* Transmission interval in ms. */
75     ovs_be64 mpid64;             /* MPID in extended mode. */
76     uint8_t opdown;              /* Operationally down. */
77     uint8_t  zero[5];
78
79     /* TLV space. */
80     uint8_t end_tlv;
81 } __attribute__((packed));
82 BUILD_ASSERT_DECL(CCM_LEN == sizeof(struct ccm));
83
84 struct cfm {
85     char *name;                 /* Name of this CFM object. */
86     struct hmap_node hmap_node; /* Node in all_cfms list. */
87
88     uint64_t mpid;
89     bool extended;         /* Extended mode. */
90     enum cfm_fault_reason fault;  /* Connectivity fault status. */
91     enum cfm_fault_reason recv_fault;  /* Bit mask of faults occuring on
92                                           receive. */
93     bool opup;             /* Operational State. */
94     bool remote_opup;      /* Remote Operational State. */
95
96     int fault_override;    /* Manual override of 'fault' status.
97                               Ignored if negative. */
98
99     uint32_t seq;          /* The sequence number of our last CCM. */
100     uint8_t ccm_interval;  /* The CCM transmission interval. */
101     int ccm_interval_ms;   /* 'ccm_interval' in milliseconds. */
102     uint16_t ccm_vlan;     /* Vlan tag of CCM PDUs.  CFM_RANDOM_VLAN if
103                               random. */
104     uint8_t ccm_pcp;       /* Priority of CCM PDUs. */
105     uint8_t maid[CCM_MAID_LEN]; /* The MAID of this CFM. */
106
107     struct timer tx_timer;    /* Send CCM when expired. */
108     struct timer fault_timer; /* Check for faults when expired. */
109
110     struct hmap remote_mps;   /* Remote MPs. */
111
112     /* Result of cfm_get_remote_mpids(). Updated only during fault check to
113      * avoid flapping. */
114     uint64_t *rmps_array;     /* Cache of remote_mps. */
115     size_t rmps_array_len;    /* Number of rmps in 'rmps_array'. */
116
117     int health;               /* Percentage of the number of CCM frames
118                                  received. */
119     int health_interval;      /* Number of fault_intervals since health was
120                                  recomputed. */
121
122 };
123
124 /* Remote MPs represent foreign network entities that are configured to have
125  * the same MAID as this CFM instance. */
126 struct remote_mp {
127     uint64_t mpid;         /* The Maintenance Point ID of this 'remote_mp'. */
128     struct hmap_node node; /* Node in 'remote_mps' map. */
129
130     bool recv;           /* CCM was received since last fault check. */
131     bool opup;           /* Operational State. */
132     uint32_t seq;        /* Most recently received sequence number. */
133     uint8_t num_health_ccm; /* Number of received ccm frames every
134                                CFM_HEALTH_INTERVAL * 'fault_interval'. */
135
136 };
137
138 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(20, 30);
139 static struct hmap all_cfms = HMAP_INITIALIZER(&all_cfms);
140
141 static unixctl_cb_func cfm_unixctl_show;
142 static unixctl_cb_func cfm_unixctl_set_fault;
143
144 static const uint8_t *
145 cfm_ccm_addr(const struct cfm *cfm)
146 {
147     return cfm->extended ? eth_addr_ccm_x : eth_addr_ccm;
148 }
149
150 /* Returns the string representation of the given cfm_fault_reason 'reason'. */
151 const char *
152 cfm_fault_reason_to_str(int reason) {
153     switch (reason) {
154 #define CFM_FAULT_REASON(NAME, STR) case CFM_FAULT_##NAME: return #STR;
155         CFM_FAULT_REASONS
156 #undef CFM_FAULT_REASON
157     default: return "<unknown>";
158     }
159 }
160
161 static void
162 ds_put_cfm_fault(struct ds *ds, int fault)
163 {
164     size_t length = ds->length;
165     int i;
166
167     for (i = 0; i < CFM_FAULT_N_REASONS; i++) {
168         int reason = 1 << i;
169
170         if (fault & reason) {
171             ds_put_format(ds, "%s ", cfm_fault_reason_to_str(reason));
172         }
173     }
174
175     if (ds->length > length) {
176         ds_truncate(ds, ds->length - 1);
177     }
178 }
179
180 static void
181 cfm_generate_maid(struct cfm *cfm)
182 {
183     const char *ovs_md_name = "ovs";
184     const char *ovs_ma_name = "ovs";
185     uint8_t *ma_p;
186     size_t md_len, ma_len;
187
188     memset(cfm->maid, 0, CCM_MAID_LEN);
189
190     md_len = strlen(ovs_md_name);
191     ma_len = strlen(ovs_ma_name);
192
193     assert(md_len && ma_len && md_len + ma_len + 4 <= CCM_MAID_LEN);
194
195     cfm->maid[0] = 4;                           /* MD name string format. */
196     cfm->maid[1] = md_len;                      /* MD name size. */
197     memcpy(&cfm->maid[2], ovs_md_name, md_len); /* MD name. */
198
199     ma_p = cfm->maid + 2 + md_len;
200     ma_p[0] = 2;                           /* MA name string format. */
201     ma_p[1] = ma_len;                      /* MA name size. */
202     memcpy(&ma_p[2], ovs_ma_name, ma_len); /* MA name. */
203 }
204
205 static int
206 ccm_interval_to_ms(uint8_t interval)
207 {
208     switch (interval) {
209     case 0:  NOT_REACHED(); /* Explicitly not supported by 802.1ag. */
210     case 1:  return 3;      /* Not recommended due to timer resolution. */
211     case 2:  return 10;     /* Not recommended due to timer resolution. */
212     case 3:  return 100;
213     case 4:  return 1000;
214     case 5:  return 10000;
215     case 6:  return 60000;
216     case 7:  return 600000;
217     default: NOT_REACHED(); /* Explicitly not supported by 802.1ag. */
218     }
219
220     NOT_REACHED();
221 }
222
223 static long long int
224 cfm_fault_interval(struct cfm *cfm)
225 {
226     /* According to the 802.1ag specification we should assume every other MP
227      * with the same MAID has the same transmission interval that we have.  If
228      * an MP has a different interval, cfm_process_heartbeat will register it
229      * as a fault (likely due to a configuration error).  Thus we can check all
230      * MPs at once making this quite a bit simpler.
231      *
232      * According to the specification we should check when (ccm_interval_ms *
233      * 3.5)ms have passed. */
234     return (cfm->ccm_interval_ms * 7) / 2;
235 }
236
237 static uint8_t
238 ms_to_ccm_interval(int interval_ms)
239 {
240     uint8_t i;
241
242     for (i = 7; i > 0; i--) {
243         if (ccm_interval_to_ms(i) <= interval_ms) {
244             return i;
245         }
246     }
247
248     return 1;
249 }
250
251 static uint32_t
252 hash_mpid(uint64_t mpid)
253 {
254     return hash_bytes(&mpid, sizeof mpid, 0);
255 }
256
257 static bool
258 cfm_is_valid_mpid(bool extended, uint64_t mpid)
259 {
260     /* 802.1ag specification requires MPIDs to be within the range [1, 8191].
261      * In extended mode we relax this requirement. */
262     return mpid >= 1 && (extended || mpid <= 8191);
263 }
264
265 static struct remote_mp *
266 lookup_remote_mp(const struct cfm *cfm, uint64_t mpid)
267 {
268     struct remote_mp *rmp;
269
270     HMAP_FOR_EACH_IN_BUCKET (rmp, node, hash_mpid(mpid), &cfm->remote_mps) {
271         if (rmp->mpid == mpid) {
272             return rmp;
273         }
274     }
275
276     return NULL;
277 }
278
279 void
280 cfm_init(void)
281 {
282     unixctl_command_register("cfm/show", "[interface]", 0, 1, cfm_unixctl_show,
283                              NULL);
284     unixctl_command_register("cfm/set-fault", "[interface] normal|false|true",
285                              1, 2, cfm_unixctl_set_fault, NULL);
286 }
287
288 /* Allocates a 'cfm' object called 'name'.  'cfm' should be initialized by
289  * cfm_configure() before use. */
290 struct cfm *
291 cfm_create(const char *name)
292 {
293     struct cfm *cfm;
294
295     cfm = xzalloc(sizeof *cfm);
296     cfm->name = xstrdup(name);
297     hmap_init(&cfm->remote_mps);
298     cfm_generate_maid(cfm);
299     hmap_insert(&all_cfms, &cfm->hmap_node, hash_string(cfm->name, 0));
300     cfm->remote_opup = true;
301     cfm->fault_override = -1;
302     cfm->health = -1;
303     return cfm;
304 }
305
306 void
307 cfm_destroy(struct cfm *cfm)
308 {
309     struct remote_mp *rmp, *rmp_next;
310
311     if (!cfm) {
312         return;
313     }
314
315     HMAP_FOR_EACH_SAFE (rmp, rmp_next, node, &cfm->remote_mps) {
316         hmap_remove(&cfm->remote_mps, &rmp->node);
317         free(rmp);
318     }
319
320     hmap_destroy(&cfm->remote_mps);
321     hmap_remove(&all_cfms, &cfm->hmap_node);
322     free(cfm->rmps_array);
323     free(cfm->name);
324     free(cfm);
325 }
326
327 /* Should be run periodically to update fault statistics messages. */
328 void
329 cfm_run(struct cfm *cfm)
330 {
331     if (timer_expired(&cfm->fault_timer)) {
332         long long int interval = cfm_fault_interval(cfm);
333         struct remote_mp *rmp, *rmp_next;
334         bool old_cfm_fault = cfm->fault;
335
336         cfm->fault = cfm->recv_fault;
337         cfm->recv_fault = 0;
338
339         cfm->rmps_array_len = 0;
340         free(cfm->rmps_array);
341         cfm->rmps_array = xmalloc(hmap_count(&cfm->remote_mps) *
342                                   sizeof *cfm->rmps_array);
343
344         cfm->remote_opup = true;
345         if (cfm->health_interval == CFM_HEALTH_INTERVAL) {
346             /* Calculate the cfm health of the interface.  If the number of
347              * remote_mpids of a cfm interface is > 1, the cfm health is
348              * undefined. If the number of remote_mpids is 1, the cfm health is
349              * the percentage of the ccm frames received in the
350              * (CFM_HEALTH_INTERVAL * 3.5)ms, else it is 0. */
351             if (hmap_count(&cfm->remote_mps) > 1) {
352                 cfm->health = -1;
353             } else if (hmap_is_empty(&cfm->remote_mps)) {
354                 cfm->health = 0;
355             } else {
356                 int exp_ccm_recvd;
357
358                 rmp = CONTAINER_OF(hmap_first(&cfm->remote_mps),
359                                    struct remote_mp, node);
360                 exp_ccm_recvd = (CFM_HEALTH_INTERVAL * 7) / 2;
361                 /* Calculate the percentage of healthy ccm frames received.
362                  * Since the 'fault_interval' is (3.5 * cfm_interval), and
363                  * 1 CCM packet must be received every cfm_interval,
364                  * the 'remote_mpid' health reports the percentage of
365                  * healthy CCM frames received every
366                  * 'CFM_HEALTH_INTERVAL'th 'fault_interval'. */
367                 cfm->health = (rmp->num_health_ccm * 100) / exp_ccm_recvd;
368                 cfm->health = MIN(cfm->health, 100);
369                 rmp->num_health_ccm = 0;
370                 assert(cfm->health >= 0 && cfm->health <= 100);
371             }
372             cfm->health_interval = 0;
373         }
374         cfm->health_interval++;
375
376         HMAP_FOR_EACH_SAFE (rmp, rmp_next, node, &cfm->remote_mps) {
377
378             if (!rmp->recv) {
379                 VLOG_DBG("%s: no CCM from RMP %"PRIu64" in the last %lldms",
380                          cfm->name, rmp->mpid, interval);
381                 hmap_remove(&cfm->remote_mps, &rmp->node);
382                 free(rmp);
383             } else {
384                 rmp->recv = false;
385
386                 if (!rmp->opup) {
387                     cfm->remote_opup = rmp->opup;
388                 }
389
390                 cfm->rmps_array[cfm->rmps_array_len++] = rmp->mpid;
391             }
392         }
393
394         if (hmap_is_empty(&cfm->remote_mps)) {
395             cfm->fault |= CFM_FAULT_RECV;
396         }
397
398         if (old_cfm_fault != cfm->fault) {
399             struct ds ds = DS_EMPTY_INITIALIZER;
400
401             ds_put_cfm_fault(&ds, cfm->fault);
402             VLOG_INFO_RL(&rl, "%s: CFM fault status changed: %s", cfm->name,
403                          ds_cstr_ro(&ds));
404             ds_destroy(&ds);
405         }
406
407         timer_set_duration(&cfm->fault_timer, interval);
408     }
409 }
410
411 /* Should be run periodically to check if the CFM module has a CCM message it
412  * wishes to send. */
413 bool
414 cfm_should_send_ccm(struct cfm *cfm)
415 {
416     return timer_expired(&cfm->tx_timer);
417 }
418
419 /* Composes a CCM message into 'packet'.  Messages generated with this function
420  * should be sent whenever cfm_should_send_ccm() indicates. */
421 void
422 cfm_compose_ccm(struct cfm *cfm, struct ofpbuf *packet,
423                 uint8_t eth_src[ETH_ADDR_LEN])
424 {
425     uint16_t ccm_vlan;
426     struct ccm *ccm;
427
428     timer_set_duration(&cfm->tx_timer, cfm->ccm_interval_ms);
429     eth_compose(packet, cfm_ccm_addr(cfm), eth_src, ETH_TYPE_CFM, sizeof *ccm);
430
431     ccm_vlan = (cfm->ccm_vlan != CFM_RANDOM_VLAN
432                 ? cfm->ccm_vlan
433                 : random_uint16());
434     ccm_vlan = ccm_vlan & VLAN_VID_MASK;
435
436     if (ccm_vlan || cfm->ccm_pcp) {
437         uint16_t tci = ccm_vlan | (cfm->ccm_pcp << VLAN_PCP_SHIFT);
438         eth_push_vlan(packet, htons(tci));
439     }
440
441     ccm = packet->l3;
442     ccm->mdlevel_version = 0;
443     ccm->opcode = CCM_OPCODE;
444     ccm->tlv_offset = 70;
445     ccm->seq = htonl(++cfm->seq);
446     ccm->flags = cfm->ccm_interval;
447     memcpy(ccm->maid, cfm->maid, sizeof ccm->maid);
448     memset(ccm->zero, 0, sizeof ccm->zero);
449     ccm->end_tlv = 0;
450
451     if (cfm->extended) {
452         ccm->mpid = htons(hash_mpid(cfm->mpid));
453         ccm->mpid64 = htonll(cfm->mpid);
454         ccm->opdown = !cfm->opup;
455     } else {
456         ccm->mpid = htons(cfm->mpid);
457         ccm->mpid64 = htonll(0);
458         ccm->opdown = 0;
459     }
460
461     if (cfm->ccm_interval == 0) {
462         assert(cfm->extended);
463         ccm->interval_ms_x = htons(cfm->ccm_interval_ms);
464     }
465
466     if (hmap_is_empty(&cfm->remote_mps)) {
467         ccm->flags |= CCM_RDI_MASK;
468     }
469 }
470
471 void
472 cfm_wait(struct cfm *cfm)
473 {
474     timer_wait(&cfm->tx_timer);
475     timer_wait(&cfm->fault_timer);
476 }
477
478 /* Configures 'cfm' with settings from 's'. */
479 bool
480 cfm_configure(struct cfm *cfm, const struct cfm_settings *s)
481 {
482     uint8_t interval;
483     int interval_ms;
484
485     if (!cfm_is_valid_mpid(s->extended, s->mpid) || s->interval <= 0) {
486         return false;
487     }
488
489     cfm->mpid = s->mpid;
490     cfm->extended = s->extended;
491     cfm->opup = s->opup;
492     interval = ms_to_ccm_interval(s->interval);
493     interval_ms = ccm_interval_to_ms(interval);
494
495     cfm->ccm_vlan = s->ccm_vlan;
496     cfm->ccm_pcp = s->ccm_pcp & (VLAN_PCP_MASK >> VLAN_PCP_SHIFT);
497     if (cfm->extended && interval_ms != s->interval) {
498         interval = 0;
499         interval_ms = MIN(s->interval, UINT16_MAX);
500     }
501
502     if (interval != cfm->ccm_interval || interval_ms != cfm->ccm_interval_ms) {
503         cfm->ccm_interval = interval;
504         cfm->ccm_interval_ms = interval_ms;
505
506         timer_set_expired(&cfm->tx_timer);
507         timer_set_duration(&cfm->fault_timer, cfm_fault_interval(cfm));
508     }
509
510     return true;
511 }
512
513 /* Returns true if 'cfm' should process packets from 'flow'. */
514 bool
515 cfm_should_process_flow(const struct cfm *cfm, const struct flow *flow)
516 {
517     return (ntohs(flow->dl_type) == ETH_TYPE_CFM
518             && eth_addr_equals(flow->dl_dst, cfm_ccm_addr(cfm)));
519 }
520
521 /* Updates internal statistics relevant to packet 'p'.  Should be called on
522  * every packet whose flow returned true when passed to
523  * cfm_should_process_flow. */
524 void
525 cfm_process_heartbeat(struct cfm *cfm, const struct ofpbuf *p)
526 {
527     struct ccm *ccm;
528     struct eth_header *eth;
529
530     eth = p->l2;
531     ccm = ofpbuf_at(p, (uint8_t *)p->l3 - (uint8_t *)p->data, CCM_ACCEPT_LEN);
532
533     if (!ccm) {
534         VLOG_INFO_RL(&rl, "%s: Received an unparseable 802.1ag CCM heartbeat.",
535                      cfm->name);
536         return;
537     }
538
539     if (ccm->opcode != CCM_OPCODE) {
540         VLOG_INFO_RL(&rl, "%s: Received an unsupported 802.1ag message. "
541                      "(opcode %u)", cfm->name, ccm->opcode);
542         return;
543     }
544
545     /* According to the 802.1ag specification, reception of a CCM with an
546      * incorrect ccm_interval, unexpected MAID, or unexpected MPID should
547      * trigger a fault.  We ignore this requirement for several reasons.
548      *
549      * Faults can cause a controller or Open vSwitch to make potentially
550      * expensive changes to the network topology.  It seems prudent to trigger
551      * them judiciously, especially when CFM is used to check slave status of
552      * bonds. Furthermore, faults can be maliciously triggered by crafting
553      * unexpected CCMs. */
554     if (memcmp(ccm->maid, cfm->maid, sizeof ccm->maid)) {
555         cfm->recv_fault |= CFM_FAULT_MAID;
556         VLOG_WARN_RL(&rl, "%s: Received unexpected remote MAID from MAC "
557                      ETH_ADDR_FMT, cfm->name, ETH_ADDR_ARGS(eth->eth_src));
558     } else {
559         uint8_t ccm_interval = ccm->flags & 0x7;
560         bool ccm_rdi = ccm->flags & CCM_RDI_MASK;
561         uint16_t ccm_interval_ms_x = ntohs(ccm->interval_ms_x);
562
563         struct remote_mp *rmp;
564         uint64_t ccm_mpid;
565         uint32_t ccm_seq;
566         bool ccm_opdown;
567         enum cfm_fault_reason cfm_fault = 0;
568
569         if (cfm->extended) {
570             ccm_mpid = ntohll(ccm->mpid64);
571             ccm_opdown = ccm->opdown;
572         } else {
573             ccm_mpid = ntohs(ccm->mpid);
574             ccm_opdown = false;
575         }
576         ccm_seq = ntohl(ccm->seq);
577
578         if (ccm_interval != cfm->ccm_interval) {
579             cfm_fault |= CFM_FAULT_INTERVAL;
580             VLOG_WARN_RL(&rl, "%s: received a CCM with an unexpected interval"
581                          " (%"PRIu8") from RMP %"PRIu64, cfm->name,
582                          ccm_interval, ccm_mpid);
583         }
584
585         if (cfm->extended && ccm_interval == 0
586             && ccm_interval_ms_x != cfm->ccm_interval_ms) {
587             cfm_fault |= CFM_FAULT_INTERVAL;
588             VLOG_WARN_RL(&rl, "%s: received a CCM with an unexpected extended"
589                          " interval (%"PRIu16"ms) from RMP %"PRIu64, cfm->name,
590                          ccm_interval_ms_x, ccm_mpid);
591         }
592
593         rmp = lookup_remote_mp(cfm, ccm_mpid);
594         if (!rmp) {
595             if (hmap_count(&cfm->remote_mps) < CFM_MAX_RMPS) {
596                 rmp = xzalloc(sizeof *rmp);
597                 hmap_insert(&cfm->remote_mps, &rmp->node, hash_mpid(ccm_mpid));
598             } else {
599                 cfm_fault |= CFM_FAULT_OVERFLOW;
600                 VLOG_WARN_RL(&rl,
601                              "%s: dropped CCM with MPID %"PRIu64" from MAC "
602                              ETH_ADDR_FMT, cfm->name, ccm_mpid,
603                              ETH_ADDR_ARGS(eth->eth_src));
604             }
605         }
606
607         if (ccm_rdi) {
608             cfm_fault |= CFM_FAULT_RDI;
609             VLOG_DBG("%s: RDI bit flagged from RMP %"PRIu64, cfm->name,
610                      rmp->mpid);
611         }
612
613         VLOG_DBG("%s: received CCM (seq %"PRIu32") (mpid %"PRIu64")"
614                  " (interval %"PRIu8") (RDI %s)", cfm->name, ccm_seq,
615                  ccm_mpid, ccm_interval, ccm_rdi ? "true" : "false");
616
617         if (rmp) {
618             if (rmp->mpid == cfm->mpid) {
619                 cfm_fault |= CFM_FAULT_LOOPBACK;
620                 VLOG_WARN_RL(&rl,"%s: received CCM with local MPID"
621                              " %"PRIu64, cfm->name, rmp->mpid);
622             }
623
624             if (rmp->seq && ccm_seq != (rmp->seq + 1)) {
625                 cfm_fault |= CFM_FAULT_SEQUENCE;
626                 VLOG_WARN_RL(&rl, "%s: (mpid %"PRIu64") detected sequence"
627                              " numbers which indicate possible connectivity"
628                              " problems (previous %"PRIu32") (current %"PRIu32
629                              ")", cfm->name, ccm_mpid, rmp->seq, ccm_seq);
630             }
631
632             rmp->mpid = ccm_mpid;
633             if (!cfm_fault) {
634                 rmp->num_health_ccm++;
635             }
636             rmp->recv = true;
637             cfm->recv_fault |= cfm_fault;
638             rmp->seq = ccm_seq;
639             rmp->opup = !ccm_opdown;
640         }
641     }
642 }
643
644 /* Gets the fault status of 'cfm'.  Returns a bit mask of 'cfm_fault_reason's
645  * indicating the cause of the connectivity fault, or zero if there is no
646  * fault. */
647 int
648 cfm_get_fault(const struct cfm *cfm)
649 {
650     if (cfm->fault_override >= 0) {
651         return cfm->fault_override ? CFM_FAULT_OVERRIDE : 0;
652     }
653     return cfm->fault;
654 }
655
656 /* Gets the health of 'cfm'.  Returns an integer between 0 and 100 indicating
657  * the health of the link as a percentage of ccm frames received in
658  * CFM_HEALTH_INTERVAL * 'fault_interval' if there is only 1 remote_mpid,
659  * returns 0 if there are no remote_mpids, and returns -1 if there are more
660  * than 1 remote_mpids. */
661 int
662 cfm_get_health(const struct cfm *cfm)
663 {
664     return cfm->health;
665 }
666
667 /* Gets the operational state of 'cfm'.  'cfm' is considered operationally down
668  * if it has received a CCM with the operationally down bit set from any of its
669  * remote maintenance points. Returns true if 'cfm' is operationally up. False
670  * otherwise. */
671 bool
672 cfm_get_opup(const struct cfm *cfm)
673 {
674     return cfm->remote_opup;
675 }
676
677 /* Populates 'rmps' with an array of remote maintenance points reachable by
678  * 'cfm'. The number of remote maintenance points is written to 'n_rmps'.
679  * 'cfm' retains ownership of the array written to 'rmps' */
680 void
681 cfm_get_remote_mpids(const struct cfm *cfm, const uint64_t **rmps,
682                      size_t *n_rmps)
683 {
684     *rmps = cfm->rmps_array;
685     *n_rmps = cfm->rmps_array_len;
686 }
687
688 static struct cfm *
689 cfm_find(const char *name)
690 {
691     struct cfm *cfm;
692
693     HMAP_FOR_EACH_WITH_HASH (cfm, hmap_node, hash_string(name, 0), &all_cfms) {
694         if (!strcmp(cfm->name, name)) {
695             return cfm;
696         }
697     }
698     return NULL;
699 }
700
701 static void
702 cfm_print_details(struct ds *ds, const struct cfm *cfm)
703 {
704     struct remote_mp *rmp;
705
706     ds_put_format(ds, "---- %s ----\n", cfm->name);
707     ds_put_format(ds, "MPID %"PRIu64":%s%s\n", cfm->mpid,
708                   cfm->extended ? " extended" : "",
709                   cfm->fault_override >= 0 ? " fault_override" : "");
710
711
712     if (cfm_get_fault(cfm)) {
713         ds_put_cstr(ds, "\tfault: ");
714         ds_put_cfm_fault(ds, cfm_get_fault(cfm));
715         ds_put_cstr(ds, "\n");
716     }
717
718     if (cfm->health == -1) {
719         ds_put_format(ds, "\taverage health: undefined\n");
720     } else {
721         ds_put_format(ds, "\taverage health: %d\n", cfm->health);
722     }
723     ds_put_format(ds, "\topstate: %s\n", cfm->opup ? "up" : "down");
724     ds_put_format(ds, "\tremote_opstate: %s\n",
725                   cfm->remote_opup ? "up" : "down");
726     ds_put_format(ds, "\tinterval: %dms\n", cfm->ccm_interval_ms);
727     ds_put_format(ds, "\tnext CCM tx: %lldms\n",
728                   timer_msecs_until_expired(&cfm->tx_timer));
729     ds_put_format(ds, "\tnext fault check: %lldms\n",
730                   timer_msecs_until_expired(&cfm->fault_timer));
731
732     HMAP_FOR_EACH (rmp, node, &cfm->remote_mps) {
733         ds_put_format(ds, "Remote MPID %"PRIu64"\n", rmp->mpid);
734         ds_put_format(ds, "\trecv since check: %s\n",
735                       rmp->recv ? "true" : "false");
736         ds_put_format(ds, "\topstate: %s\n", rmp->opup? "up" : "down");
737     }
738 }
739
740 static void
741 cfm_unixctl_show(struct unixctl_conn *conn, int argc, const char *argv[],
742                  void *aux OVS_UNUSED)
743 {
744     struct ds ds = DS_EMPTY_INITIALIZER;
745     const struct cfm *cfm;
746
747     if (argc > 1) {
748         cfm = cfm_find(argv[1]);
749         if (!cfm) {
750             unixctl_command_reply_error(conn, "no such CFM object");
751             return;
752         }
753         cfm_print_details(&ds, cfm);
754     } else {
755         HMAP_FOR_EACH (cfm, hmap_node, &all_cfms) {
756             cfm_print_details(&ds, cfm);
757         }
758     }
759
760     unixctl_command_reply(conn, ds_cstr(&ds));
761     ds_destroy(&ds);
762 }
763
764 static void
765 cfm_unixctl_set_fault(struct unixctl_conn *conn, int argc, const char *argv[],
766                       void *aux OVS_UNUSED)
767 {
768     const char *fault_str = argv[argc - 1];
769     int fault_override;
770     struct cfm *cfm;
771
772     if (!strcasecmp("true", fault_str)) {
773         fault_override = 1;
774     } else if (!strcasecmp("false", fault_str)) {
775         fault_override = 0;
776     } else if (!strcasecmp("normal", fault_str)) {
777         fault_override = -1;
778     } else {
779         unixctl_command_reply_error(conn, "unknown fault string");
780         return;
781     }
782
783     if (argc > 2) {
784         cfm = cfm_find(argv[1]);
785         if (!cfm) {
786             unixctl_command_reply_error(conn, "no such CFM object");
787             return;
788         }
789         cfm->fault_override = fault_override;
790     } else {
791         HMAP_FOR_EACH (cfm, hmap_node, &all_cfms) {
792             cfm->fault_override = fault_override;
793         }
794     }
795
796     unixctl_command_reply(conn, "OK");
797 }