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