Setting tag sliver-openvswitch-2.2.90-1
[sliver-openvswitch.git] / ofproto / connmgr.h
1 /*
2  * Copyright (c) 2009, 2010, 2011, 2012, 2013, 2014 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 #ifndef CONNMGR_H
18 #define CONNMGR_H 1
19
20 #include "classifier.h"
21 #include "hmap.h"
22 #include "list.h"
23 #include "match.h"
24 #include "ofp-errors.h"
25 #include "ofp-util.h"
26 #include "ofproto.h"
27 #include "openflow/nicira-ext.h"
28 #include "openvswitch/types.h"
29
30 struct nlattr;
31 struct ofconn;
32 struct ofopgroup;
33 struct rule;
34 struct simap;
35 struct sset;
36
37 /* ofproto supports two kinds of OpenFlow connections:
38  *
39  *   - "Primary" connections to ordinary OpenFlow controllers.  ofproto
40  *     maintains persistent connections to these controllers and by default
41  *     sends them asynchronous messages such as packet-ins.
42  *
43  *   - "Service" connections, e.g. from ovs-ofctl.  When these connections
44  *     drop, it is the other side's responsibility to reconnect them if
45  *     necessary.  ofproto does not send them asynchronous messages by default.
46  *
47  * Currently, active (tcp, ssl, unix) connections are always "primary"
48  * connections and passive (ptcp, pssl, punix) connections are always "service"
49  * connections.  There is no inherent reason for this, but it reflects the
50  * common case.
51  */
52 enum ofconn_type {
53     OFCONN_PRIMARY,             /* An ordinary OpenFlow controller. */
54     OFCONN_SERVICE              /* A service connection, e.g. "ovs-ofctl". */
55 };
56
57 /* The type of an OpenFlow asynchronous message. */
58 enum ofconn_async_msg_type {
59     OAM_PACKET_IN,              /* OFPT_PACKET_IN or NXT_PACKET_IN. */
60     OAM_PORT_STATUS,            /* OFPT_PORT_STATUS. */
61     OAM_FLOW_REMOVED,           /* OFPT_FLOW_REMOVED or NXT_FLOW_REMOVED. */
62     OAM_N_TYPES
63 };
64
65 enum ofproto_packet_in_miss_type {
66     /* Not generated by a flow miss or table-miss flow. */
67     OFPROTO_PACKET_IN_NO_MISS,
68
69     /* The packet_in was generated directly by a table-miss flow, that is, a
70      * flow with priority 0 that wildcards all fields.  See OF1.3.3 section
71      * 5.4.
72      *
73      * (Our interpretation of "directly" is "not via groups".  Packet_ins
74      * generated by table-miss flows via groups use
75      * OFPROTO_PACKET_IN_NO_MISS.) */
76     OFPROTO_PACKET_IN_MISS_FLOW,
77
78     /* The packet-in was generated directly by a table-miss, but not a
79      * table-miss flow.  That is, it was generated by the OpenFlow 1.0, 1.1, or
80      * 1.2 table-miss behavior. */
81     OFPROTO_PACKET_IN_MISS_WITHOUT_FLOW,
82 };
83
84 /* A packet_in, with extra members to assist in queuing and routing it. */
85 struct ofproto_packet_in {
86     struct ofputil_packet_in up;
87     struct list list_node;      /* For queuing. */
88     uint16_t controller_id;     /* Controller ID to send to. */
89     int send_len;               /* Length that the action requested sending. */
90     enum ofproto_packet_in_miss_type miss_type;
91 };
92
93 /* Basics. */
94 struct connmgr *connmgr_create(struct ofproto *ofproto,
95                                const char *dpif_name, const char *local_name);
96 void connmgr_destroy(struct connmgr *);
97
98 void connmgr_run(struct connmgr *,
99                  bool (*handle_openflow)(struct ofconn *,
100                                          const struct ofpbuf *ofp_msg));
101 void connmgr_wait(struct connmgr *, bool handling_openflow);
102
103 void connmgr_get_memory_usage(const struct connmgr *, struct simap *usage);
104
105 struct ofproto *ofconn_get_ofproto(const struct ofconn *);
106
107 void connmgr_retry(struct connmgr *);
108
109 /* OpenFlow configuration. */
110 bool connmgr_has_controllers(const struct connmgr *);
111 void connmgr_get_controller_info(struct connmgr *, struct shash *);
112 void connmgr_free_controller_info(struct shash *);
113 void connmgr_set_controllers(struct connmgr *,
114                              const struct ofproto_controller[], size_t n,
115                              uint32_t allowed_versions);
116 void connmgr_reconnect(const struct connmgr *);
117
118 int connmgr_set_snoops(struct connmgr *, const struct sset *snoops);
119 bool connmgr_has_snoops(const struct connmgr *);
120 void connmgr_get_snoops(const struct connmgr *, struct sset *snoops);
121
122 /* Individual connections to OpenFlow controllers. */
123 enum ofconn_type ofconn_get_type(const struct ofconn *);
124
125 bool ofconn_get_master_election_id(const struct ofconn *, uint64_t *idp);
126 bool ofconn_set_master_election_id(struct ofconn *, uint64_t);
127 enum ofp12_controller_role ofconn_get_role(const struct ofconn *);
128 void ofconn_set_role(struct ofconn *, enum ofp12_controller_role);
129
130 enum ofputil_protocol ofconn_get_protocol(const struct ofconn *);
131 void ofconn_set_protocol(struct ofconn *, enum ofputil_protocol);
132
133 enum nx_packet_in_format ofconn_get_packet_in_format(struct ofconn *);
134 void ofconn_set_packet_in_format(struct ofconn *, enum nx_packet_in_format);
135
136 void ofconn_set_controller_id(struct ofconn *, uint16_t controller_id);
137
138 void ofconn_set_invalid_ttl_to_controller(struct ofconn *, bool);
139 bool ofconn_get_invalid_ttl_to_controller(struct ofconn *);
140
141 int ofconn_get_miss_send_len(const struct ofconn *);
142 void ofconn_set_miss_send_len(struct ofconn *, int miss_send_len);
143
144 void ofconn_set_async_config(struct ofconn *,
145                              const uint32_t master_masks[OAM_N_TYPES],
146                              const uint32_t slave_masks[OAM_N_TYPES]);
147 void ofconn_get_async_config(struct ofconn *,
148                              uint32_t *master_masks,
149                              uint32_t *slave_masks);
150
151 void ofconn_send_reply(const struct ofconn *, struct ofpbuf *);
152 void ofconn_send_replies(const struct ofconn *, struct list *);
153 void ofconn_send_error(const struct ofconn *, const struct ofp_header *request,
154                        enum ofperr);
155
156 enum ofperr ofconn_pktbuf_retrieve(struct ofconn *, uint32_t id,
157                                    struct ofpbuf **bufferp, ofp_port_t *in_port);
158
159 bool ofconn_has_pending_opgroups(const struct ofconn *);
160 void ofconn_add_opgroup(struct ofconn *, struct list *);
161 void ofconn_remove_opgroup(struct ofconn *, struct list *,
162                            const struct ofp_header *request, int error);
163
164 struct hmap *ofconn_get_bundles(struct ofconn *ofconn);
165
166 /* Sending asynchronous messages. */
167 bool connmgr_wants_packet_in_on_miss(struct connmgr *mgr);
168 void connmgr_send_port_status(struct connmgr *, struct ofconn *source,
169                               const struct ofputil_phy_port *, uint8_t reason);
170 void connmgr_send_flow_removed(struct connmgr *,
171                                const struct ofputil_flow_removed *);
172 void connmgr_send_packet_in(struct connmgr *,
173                             const struct ofproto_packet_in *);
174 void ofconn_send_role_status(struct ofconn *ofconn, uint32_t role,
175                              uint8_t reason);
176
177 /* Fail-open settings. */
178 enum ofproto_fail_mode connmgr_get_fail_mode(const struct connmgr *);
179 void connmgr_set_fail_mode(struct connmgr *, enum ofproto_fail_mode);
180
181 /* Fail-open implementation. */
182 int connmgr_get_max_probe_interval(const struct connmgr *);
183 bool connmgr_is_any_controller_connected(const struct connmgr *);
184 bool connmgr_is_any_controller_admitted(const struct connmgr *);
185 int connmgr_failure_duration(const struct connmgr *);
186
187 /* In-band configuration. */
188 void connmgr_set_extra_in_band_remotes(struct connmgr *,
189                                        const struct sockaddr_in *, size_t);
190 void connmgr_set_in_band_queue(struct connmgr *, int queue_id);
191
192 /* In-band implementation. */
193 bool connmgr_has_in_band(struct connmgr *);
194
195 /* Fail-open and in-band implementation. */
196 void connmgr_flushed(struct connmgr *);
197
198 /* A flow monitor managed by NXST_FLOW_MONITOR and related requests. */
199 struct ofmonitor {
200     struct ofconn *ofconn;      /* Owning 'ofconn'. */
201     struct hmap_node ofconn_node; /* In ofconn's 'monitors' hmap. */
202     uint32_t id;
203
204     enum nx_flow_monitor_flags flags;
205
206     /* Matching. */
207     ofp_port_t out_port;
208     uint8_t table_id;
209     struct minimatch match;
210 };
211
212 struct ofputil_flow_monitor_request;
213
214 enum ofperr ofmonitor_create(const struct ofputil_flow_monitor_request *,
215                              struct ofconn *, struct ofmonitor **)
216     OVS_REQUIRES(ofproto_mutex);
217 struct ofmonitor *ofmonitor_lookup(struct ofconn *, uint32_t id)
218     OVS_REQUIRES(ofproto_mutex);
219 void ofmonitor_destroy(struct ofmonitor *)
220     OVS_REQUIRES(ofproto_mutex);
221
222 void ofmonitor_report(struct connmgr *, struct rule *,
223                       enum nx_flow_update_event, enum ofp_flow_removed_reason,
224                       const struct ofconn *abbrev_ofconn, ovs_be32 abbrev_xid)
225     OVS_REQUIRES(ofproto_mutex);
226 void ofmonitor_flush(struct connmgr *) OVS_REQUIRES(ofproto_mutex);
227
228
229 struct rule_collection;
230 void ofmonitor_collect_resume_rules(struct ofmonitor *, uint64_t seqno,
231                                     struct rule_collection *)
232     OVS_REQUIRES(ofproto_mutex);
233 void ofmonitor_compose_refresh_updates(struct rule_collection *rules,
234                                        struct list *msgs)
235     OVS_REQUIRES(ofproto_mutex);
236
237 #endif /* connmgr.h */