2 * Copyright (c) 2010 Nicira Networks.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
29 #include "poll-loop.h"
33 VLOG_DEFINE_THIS_MODULE(cfm);
35 #define CCM_OPCODE 1 /* CFM message opcode meaning CCM. */
36 #define DEST_ADDR UINT64_C(0x0180C2000030) /* MD level 0 CCM destination. */
40 uint32_t seq; /* The sequence number of our last CCM. */
42 uint8_t ccm_interval; /* The CCM transmission interval. */
43 int ccm_interval_ms; /* 'ccm_interval' in milliseconds. */
45 long long ccm_sent; /* The time we last sent a CCM. */
46 long long fault_check; /* The time we last checked for faults. */
50 ccm_interval_to_ms(uint8_t interval)
53 case 0: NOT_REACHED(); /* Explicitly not supported by 802.1ag. */
54 case 1: return 3; /* Not recommended due to timer resolution. */
55 case 2: return 10; /* Not recommended due to timer resolution. */
60 case 7: return 600000;
61 default: NOT_REACHED(); /* Explicitly not supported by 802.1ag. */
68 ms_to_ccm_interval(int interval_ms)
72 for (i = 7; i > 0; i--) {
73 if (ccm_interval_to_ms(i) <= interval_ms) {
81 static struct cfm_internal *
82 cfm_to_internal(struct cfm *cfm)
84 return CONTAINER_OF(cfm, struct cfm_internal, cfm);
88 hash_mpid(uint8_t mpid)
90 return hash_int(mpid, 0);
94 cfm_is_valid_mpid(uint32_t mpid)
96 /* 802.1ag specification requires MPIDs to be within the range [1, 8191] */
97 return mpid >= 1 && mpid <= 8191;
100 static struct remote_mp *
101 lookup_remote_mp(const struct hmap *hmap, uint16_t mpid)
103 struct remote_mp *rmp;
105 HMAP_FOR_EACH_IN_BUCKET (rmp, node, hash_mpid(mpid), hmap) {
106 if (rmp->mpid == mpid) {
114 static struct ofpbuf *
115 compose_ccm(struct cfm_internal *cfmi)
118 struct ofpbuf *packet;
119 struct eth_header *eth;
121 packet = ofpbuf_new(ETH_HEADER_LEN + CCM_LEN + 2);
123 ofpbuf_reserve(packet, 2);
125 eth = ofpbuf_put_zeros(packet, ETH_HEADER_LEN);
126 ccm = ofpbuf_put_zeros(packet, CCM_LEN);
128 eth_addr_from_uint64(DEST_ADDR, eth->eth_dst);
129 memcpy(eth->eth_src, cfmi->cfm.eth_src, sizeof eth->eth_src);
130 eth->eth_type = htons(ETH_TYPE_CFM);
132 ccm->mdlevel_version = 0;
133 ccm->opcode = CCM_OPCODE;
134 ccm->tlv_offset = 70;
135 ccm->seq = htonl(++cfmi->seq);
136 ccm->mpid = htons(cfmi->cfm.mpid);
137 ccm->flags = cfmi->ccm_interval;
138 memcpy(ccm->maid, cfmi->cfm.maid, sizeof ccm->maid);
142 /* Allocates a 'cfm' object. This object should have its 'mpid', 'maid',
143 * 'eth_src', and 'interval' filled out. When changes are made to the 'cfm'
144 * object, cfm_configure should be called before using it. */
149 struct cfm_internal *cfmi;
151 cfmi = xzalloc(sizeof *cfmi);
154 hmap_init(&cfm->remote_mps);
155 hmap_init(&cfm->x_remote_mps);
156 hmap_init(&cfm->x_remote_maids);
161 cfm_destroy(struct cfm *cfm)
163 struct remote_mp *rmp, *rmp_next;
164 struct remote_maid *rmaid, *rmaid_next;
170 HMAP_FOR_EACH_SAFE (rmp, rmp_next, node, &cfm->remote_mps) {
171 hmap_remove(&cfm->remote_mps, &rmp->node);
175 HMAP_FOR_EACH_SAFE (rmp, rmp_next, node, &cfm->x_remote_mps) {
176 hmap_remove(&cfm->x_remote_mps, &rmp->node);
180 HMAP_FOR_EACH_SAFE (rmaid, rmaid_next, node, &cfm->x_remote_maids) {
181 hmap_remove(&cfm->x_remote_maids, &rmaid->node);
185 hmap_destroy(&cfm->remote_mps);
186 hmap_destroy(&cfm->x_remote_mps);
187 hmap_destroy(&cfm->x_remote_maids);
188 free(cfm_to_internal(cfm));
191 /* Should be run periodically to update fault statistics and generate CCM
192 * messages. If necessary, returns a packet which the caller is responsible
193 * for sending, un-initing, and deallocating. Otherwise returns NULL. */
195 cfm_run(struct cfm *cfm)
197 long long now = time_msec();
198 struct cfm_internal *cfmi = cfm_to_internal(cfm);
200 /* According to the 802.1ag specification we should assume every other MP
201 * with the same MAID has the same transmission interval that we have. If
202 * an MP has a different interval, cfm_process_heartbeat will register it
203 * as a fault (likely due to a configuration error). Thus we can check all
204 * MPs at once making this quite a bit simpler.
206 * According to the specification we should check when (ccm_interval_ms *
207 * 3.5)ms have passed. We changed the multiplier to 4 to avoid messy
208 * floating point arithmetic and add a bit of wiggle room. */
209 if (now >= cfmi->fault_check + cfmi->ccm_interval_ms * 4) {
211 struct remote_mp *rmp, *rmp_next;
212 struct remote_maid *rmaid, *rmaid_next;
216 HMAP_FOR_EACH (rmp, node, &cfm->remote_mps) {
217 rmp->fault = rmp->fault || cfmi->fault_check > rmp->recv_time;
218 fault = rmp->fault || fault;
221 HMAP_FOR_EACH_SAFE (rmp, rmp_next, node, &cfm->x_remote_mps) {
222 if (cfmi->fault_check > rmp->recv_time) {
223 hmap_remove(&cfm->x_remote_mps, &rmp->node);
228 HMAP_FOR_EACH_SAFE (rmaid, rmaid_next, node, &cfm->x_remote_maids) {
229 if (cfmi->fault_check > rmaid->recv_time) {
230 hmap_remove(&cfm->x_remote_maids, &rmaid->node);
235 fault = (fault || !hmap_is_empty(&cfm->x_remote_mps)
236 || !hmap_is_empty(&cfm->x_remote_maids));
239 cfmi->fault_check = now;
242 if (now >= cfmi->ccm_sent + cfmi->ccm_interval_ms) {
243 cfmi->ccm_sent = now;
244 return compose_ccm(cfmi);
251 cfm_wait(struct cfm *cfm)
254 struct cfm_internal *cfmi = cfm_to_internal(cfm);
256 wait = MIN(cfmi->ccm_sent + cfmi->ccm_interval_ms,
257 cfmi->fault_check + cfmi->ccm_interval_ms * 4);
258 poll_timer_wait_until(wait);
261 /* Should be called whenever a client of the cfm library changes the internals
262 * of 'cfm'. Returns true if 'cfm' is valid. */
264 cfm_configure(struct cfm *cfm)
266 struct cfm_internal *cfmi;
268 if (!cfm_is_valid_mpid(cfm->mpid) || !cfm->interval) {
272 cfmi = cfm_to_internal(cfm);
273 cfmi->ccm_interval = ms_to_ccm_interval(cfm->interval);
274 cfmi->ccm_interval_ms = ccm_interval_to_ms(cfmi->ccm_interval);
276 /* Force a resend and check in case anything changed. */
278 cfmi->fault_check = 0;
282 /* Given an array of MPIDs, updates the 'remote_mps' map of 'cfm' to reflect
283 * it. Invalid MPIDs are skipped. */
285 cfm_update_remote_mps(struct cfm *cfm, const uint16_t *mpids, size_t n_mpids)
288 struct hmap new_rmps;
289 struct remote_mp *rmp, *rmp_next;
291 hmap_init(&new_rmps);
293 for (i = 0; i < n_mpids; i++) {
294 uint16_t mpid = mpids[i];
296 if (!cfm_is_valid_mpid(mpid)
297 || lookup_remote_mp(&new_rmps, mpid)) {
301 if ((rmp = lookup_remote_mp(&cfm->remote_mps, mpid))) {
302 hmap_remove(&cfm->remote_mps, &rmp->node);
303 } else if ((rmp = lookup_remote_mp(&cfm->x_remote_mps, mpid))) {
304 hmap_remove(&cfm->x_remote_mps, &rmp->node);
306 rmp = xzalloc(sizeof *rmp);
310 hmap_insert(&new_rmps, &rmp->node, hash_mpid(mpid));
313 hmap_swap(&new_rmps, &cfm->remote_mps);
315 HMAP_FOR_EACH_SAFE (rmp, rmp_next, node, &new_rmps) {
316 hmap_remove(&new_rmps, &rmp->node);
320 hmap_destroy(&new_rmps);
323 /* Finds a 'remote_mp' with 'mpid' in 'cfm'. If no such 'remote_mp' exists
325 const struct remote_mp *
326 cfm_get_remote_mp(const struct cfm *cfm, uint16_t mpid)
328 return lookup_remote_mp(&cfm->remote_mps, mpid);
331 /* Generates 'maid' from 'md_name' and 'ma_name'. A NULL parameter indicates
332 * the default should be used. Returns false if unsuccessful. */
334 cfm_generate_maid(const char *md_name, const char *ma_name,
335 uint8_t maid[CCM_MAID_LEN])
338 size_t md_len, ma_len;
348 memset(maid, 0, CCM_MAID_LEN);
350 md_len = strlen(md_name);
351 ma_len = strlen(ma_name);
353 if (!md_len || !ma_len || md_len + ma_len + 4 > CCM_MAID_LEN) {
357 maid[0] = 4; /* MD name string format. */
358 maid[1] = md_len; /* MD name size. */
359 memcpy(&maid[2], md_name, md_len); /* MD name. */
361 ma_p = maid + 2 + md_len;
362 ma_p[0] = 2; /* MA name string format. */
363 ma_p[1] = ma_len; /* MA name size. */
364 memcpy(&ma_p[2], ma_name, ma_len); /* MA name. */
368 /* Returns true if the CFM library should process packets from 'flow'. */
370 cfm_should_process_flow(const struct flow *flow)
372 return (ntohs(flow->dl_type) == ETH_TYPE_CFM
373 && eth_addr_to_uint64(flow->dl_dst) == DEST_ADDR);
376 /* Updates internal statistics relevant to packet 'p'. Should be called on
377 * every packet whose flow returned true when passed to
378 * cfm_should_process_flow. */
380 cfm_process_heartbeat(struct cfm *cfm, const struct ofpbuf *p)
385 uint8_t ccm_interval;
386 struct remote_mp *rmp;
388 struct cfm_internal *cfmi = cfm_to_internal(cfm);
389 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
391 ccm = ofpbuf_at(p, (uint8_t *)p->l3 - (uint8_t *)p->data, CCM_LEN);
394 VLOG_INFO_RL(&rl, "Received an un-parseable 802.1ag CCM heartbeat.");
398 if (ccm->opcode != CCM_OPCODE) {
399 VLOG_INFO_RL(&rl, "Received an unsupported 802.1ag message. "
400 "(opcode %u)", ccm->opcode);
404 if (memcmp(ccm->maid, cfm->maid, sizeof ccm->maid)) {
406 struct remote_maid *rmaid;
408 hash = hash_bytes(ccm->maid, sizeof ccm->maid, 0);
410 HMAP_FOR_EACH_IN_BUCKET (rmaid, node, hash, &cfm->x_remote_maids) {
411 if (memcmp(rmaid->maid, ccm->maid, sizeof rmaid->maid) == 0) {
412 rmaid->recv_time = time_msec();
417 rmaid = xzalloc(sizeof *rmaid);
418 rmaid->recv_time = time_msec();
419 memcpy(rmaid->maid, ccm->maid, sizeof rmaid->maid);
420 hmap_insert(&cfm->x_remote_maids, &rmaid->node, hash);
424 ccm_mpid = ntohs(ccm->mpid);
425 ccm_seq = ntohl(ccm->seq);
426 ccm_interval = ccm->flags & 0x7;
428 rmp = lookup_remote_mp(&cfm->remote_mps, ccm_mpid);
431 rmp = lookup_remote_mp(&cfm->x_remote_mps, ccm_mpid);
435 rmp = xzalloc(sizeof *rmp);
436 rmp->mpid = ccm_mpid;
437 hmap_insert(&cfm->x_remote_mps, &rmp->node, hash_mpid(ccm_mpid));
440 rmp->recv_time = time_msec();
441 rmp->fault = ccm_interval != cfmi->ccm_interval;