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