vswitchd: Bubble no-flood configuration up to bridge
[sliver-openvswitch.git] / ofproto / ofproto.h
1 /*
2  * Copyright (c) 2009, 2010 Nicira Networks.
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 OFPROTO_H
18 #define OFPROTO_H 1
19
20 #include <sys/types.h>
21 #include <netinet/in.h>
22 #include <stdbool.h>
23 #include <stddef.h>
24 #include <stdint.h>
25 #include "flow.h"
26 #include "netflow.h"
27 #include "tag.h"
28
29 #ifdef  __cplusplus
30 extern "C" {
31 #endif
32
33 struct odp_actions;
34 struct ofhooks;
35 struct ofproto;
36 struct svec;
37
38 struct ofexpired {
39     struct flow flow;
40     uint64_t packet_count;      /* Packets from subrules. */
41     uint64_t byte_count;        /* Bytes from subrules. */
42     long long int used;         /* Last-used time (0 if never used). */
43 };
44
45 struct ofproto_sflow_options {
46     struct svec targets;
47     uint32_t sampling_rate;
48     uint32_t polling_interval;
49     uint32_t header_len;
50     uint32_t sub_id;
51     char *agent_device;
52     char *control_ip;
53 };
54
55 /* How the switch should act if the controller cannot be contacted. */
56 enum ofproto_fail_mode {
57     OFPROTO_FAIL_SECURE,        /* Preserve flow table. */
58     OFPROTO_FAIL_STANDALONE     /* Act as a standalone switch. */
59 };
60
61 enum ofproto_band {
62     OFPROTO_IN_BAND,            /* In-band connection to controller. */
63     OFPROTO_OUT_OF_BAND         /* Out-of-band connection to controller. */
64 };
65
66 struct ofproto_controller {
67     char *target;               /* e.g. "tcp:127.0.0.1" */
68     int max_backoff;            /* Maximum reconnection backoff, in seconds. */
69     int probe_interval;         /* Max idle time before probing, in seconds. */
70     enum ofproto_band band;      /* In-band or out-of-band? */
71
72     /* Discovery options. */
73     char *accept_re;            /* Regexp for acceptable controllers.  */
74     bool update_resolv_conf;    /* Update /etc/resolv.conf? */
75
76     /* OpenFlow packet-in rate-limiting. */
77     int rate_limit;             /* Max packet-in rate in packets per second. */
78     int burst_limit;            /* Limit on accumulating packet credits. */
79 };
80
81 #define DEFAULT_MFR_DESC "Nicira Networks, Inc."
82 #define DEFAULT_HW_DESC "Open vSwitch"
83 #define DEFAULT_SW_DESC VERSION BUILDNR
84 #define DEFAULT_SERIAL_DESC "None"
85 #define DEFAULT_DP_DESC "None"
86
87 int ofproto_create(const char *datapath, const char *datapath_type,
88                    const struct ofhooks *, void *aux,
89                    struct ofproto **ofprotop);
90 void ofproto_destroy(struct ofproto *);
91 int ofproto_run(struct ofproto *);
92 int ofproto_run1(struct ofproto *);
93 int ofproto_run2(struct ofproto *, bool revalidate_all);
94 void ofproto_wait(struct ofproto *);
95 bool ofproto_is_alive(const struct ofproto *);
96
97 int ofproto_port_del(struct ofproto *, uint16_t odp_port);
98 bool ofproto_port_is_floodable(struct ofproto *, uint16_t odp_port);
99
100 /* Configuration. */
101 void ofproto_set_datapath_id(struct ofproto *, uint64_t datapath_id);
102 void ofproto_set_controllers(struct ofproto *,
103                              const struct ofproto_controller *, size_t n);
104 void ofproto_set_fail_mode(struct ofproto *, enum ofproto_fail_mode fail_mode);
105 void ofproto_reconnect_controllers(struct ofproto *);
106 void ofproto_set_extra_in_band_remotes(struct ofproto *,
107                                        const struct sockaddr_in *, size_t n);
108 void ofproto_set_desc(struct ofproto *,
109                       const char *mfr_desc, const char *hw_desc,
110                       const char *sw_desc, const char *serial_desc,
111                       const char *dp_desc);
112 int ofproto_set_snoops(struct ofproto *, const struct svec *snoops);
113 int ofproto_set_netflow(struct ofproto *,
114                         const struct netflow_options *nf_options);
115 void ofproto_set_sflow(struct ofproto *, const struct ofproto_sflow_options *);
116
117 /* Configuration querying. */
118 uint64_t ofproto_get_datapath_id(const struct ofproto *);
119 bool ofproto_has_primary_controller(const struct ofproto *);
120 enum ofproto_fail_mode ofproto_get_fail_mode(const struct ofproto *);
121 void ofproto_get_listeners(const struct ofproto *, struct svec *);
122 void ofproto_get_snoops(const struct ofproto *, struct svec *);
123 void ofproto_get_all_flows(struct ofproto *p, struct ds *);
124
125 /* Functions for use by ofproto implementation modules, not by clients. */
126 int ofproto_send_packet(struct ofproto *, const struct flow *,
127                         const union ofp_action *, size_t n_actions,
128                         const struct ofpbuf *);
129 void ofproto_add_flow(struct ofproto *, const struct flow *,
130                       uint32_t wildcards, unsigned int priority,
131                       const union ofp_action *, size_t n_actions,
132                       int idle_timeout);
133 void ofproto_delete_flow(struct ofproto *, const struct flow *,
134                          uint32_t wildcards, unsigned int priority);
135 void ofproto_flush_flows(struct ofproto *);
136
137 /* Hooks for ovs-vswitchd. */
138 struct ofhooks {
139     bool (*normal_cb)(const struct flow *, const struct ofpbuf *packet,
140                       struct odp_actions *, tag_type *,
141                       uint16_t *nf_output_iface, void *aux);
142     void (*account_flow_cb)(const struct flow *, tag_type tags,
143                             const union odp_action *, size_t n_actions,
144                             unsigned long long int n_bytes, void *aux);
145     void (*account_checkpoint_cb)(void *aux);
146 };
147 void ofproto_revalidate(struct ofproto *, tag_type);
148 struct tag_set *ofproto_get_revalidate_set(struct ofproto *);
149
150 #ifdef  __cplusplus
151 }
152 #endif
153
154 #endif /* ofproto.h */