15a015486568e0c7212392432e1000af2676a3ce
[sliver-openvswitch.git] / lib / cfm.h
1 /* Copyright (c) 2010, 2011 Nicira, Inc.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #ifndef CFM_H
17 #define CFM_H 1
18
19 #include <stdint.h>
20
21 #include "hmap.h"
22 #include "openvswitch/types.h"
23
24 struct flow;
25 struct ofpbuf;
26 struct netdev;
27 struct flow_wildcards;
28
29 #define CFM_RANDOM_VLAN UINT16_MAX
30
31 #define CFM_FAULT_REASONS                  \
32     CFM_FAULT_REASON(RECV, recv)           \
33     CFM_FAULT_REASON(RDI, rdi)             \
34     CFM_FAULT_REASON(MAID, maid)           \
35     CFM_FAULT_REASON(LOOPBACK, loopback)   \
36     CFM_FAULT_REASON(OVERFLOW, overflow)   \
37     CFM_FAULT_REASON(OVERRIDE, override)   \
38     CFM_FAULT_REASON(INTERVAL, interval)
39
40 enum cfm_fault_bit_index {
41 #define CFM_FAULT_REASON(NAME, STR) CFM_FAULT_INDEX_##NAME,
42     CFM_FAULT_REASONS
43 #undef CFM_FAULT_REASON
44     CFM_FAULT_N_REASONS
45 };
46
47 enum cfm_fault_reason {
48 #define CFM_FAULT_REASON(NAME, STR) \
49     CFM_FAULT_##NAME = 1 << CFM_FAULT_INDEX_##NAME,
50     CFM_FAULT_REASONS
51 #undef CFM_FAULT_REASON
52 };
53
54 struct cfm_settings {
55     uint64_t mpid;              /* The MPID of this CFM. */
56     int interval;               /* The requested transmission interval. */
57     bool extended;              /* Run in extended mode. */
58     bool demand;                /* Run in demand mode. */
59     bool opup;                  /* Operational State. */
60     uint16_t ccm_vlan;          /* CCM Vlan tag. Zero if none.
61                                    CFM_RANDOM_VLAN if random. */
62     uint8_t ccm_pcp;            /* CCM Priority. Zero if none. */
63
64     bool check_tnl_key;         /* Verify inbound packet key? */
65 };
66
67 void cfm_init(void);
68 struct cfm *cfm_create(const struct netdev *);
69 void cfm_destroy(struct cfm *);
70 void cfm_run(struct cfm *);
71 bool cfm_should_send_ccm(struct cfm *);
72 void cfm_compose_ccm(struct cfm *, struct ofpbuf *packet, uint8_t eth_src[6]);
73 void cfm_wait(struct cfm *);
74 bool cfm_configure(struct cfm *, const struct cfm_settings *);
75 void cfm_set_netdev(struct cfm *, const struct netdev *);
76 bool cfm_should_process_flow(const struct cfm *cfm, const struct flow *,
77                              struct flow_wildcards *);
78 void cfm_process_heartbeat(struct cfm *, const struct ofpbuf *packet);
79 int cfm_get_fault(const struct cfm *);
80 int cfm_get_health(const struct cfm *);
81 int cfm_get_opup(const struct cfm *);
82 void cfm_get_remote_mpids(const struct cfm *, const uint64_t **rmps,
83                           size_t *n_rmps);
84 const char *cfm_fault_reason_to_str(int fault);
85
86 #endif /* cfm.h */