]> git.proxmox.com Git - mirror_ovs.git/blame - ovn/controller/ofctrl.h
ovn-controller: Tie OpenFlow and logical flows using OpenFlow cookie.
[mirror_ovs.git] / ovn / controller / ofctrl.h
CommitLineData
fa183acc 1/* Copyright (c) 2015, 2016 Nicira, Inc.
b4e87a48
BP
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
17#ifndef OFCTRL_H
18#define OFCTRL_H 1
19
20#include <stdint.h>
21
064d7f84 22#include "openvswitch/meta-flow.h"
fdbdb595 23#include "ovsdb-idl.h"
1b05a9d3 24
b4e87a48 25struct controller_ctx;
761fd08f 26struct hmap;
b4e87a48
BP
27struct match;
28struct ofpbuf;
422a9f73 29struct ovsrec_bridge;
467085fd 30struct group_table;
b4e87a48
BP
31
32/* Interface for OVN main loop. */
fa44a4a3 33void ofctrl_init(struct group_table *group_table);
11b75557
JP
34enum mf_field_id ofctrl_run(const struct ovsrec_bridge *br_int,
35 struct shash *pending_ct_zones);
36void ofctrl_put(struct hmap *flow_table, struct shash *pending_ct_zones,
37 int64_t nb_cfg);
b4e87a48
BP
38void ofctrl_wait(void);
39void ofctrl_destroy(void);
fa183acc 40int64_t ofctrl_get_cur_cfg(void);
b4e87a48 41
fdbdb595
RM
42struct ovn_flow *ofctrl_dup_flow(struct ovn_flow *source);
43
11b75557
JP
44void ofctrl_ct_flush_zone(uint16_t zone_id);
45
fdbdb595 46/* Flow table interfaces to the rest of ovn-controller. */
926c34fd 47void ofctrl_add_flow(struct hmap *desired_flows, uint8_t table_id,
c80eac1f
BP
48 uint16_t priority, uint64_t cookie,
49 const struct match *, const struct ofpbuf *ofpacts);
fdbdb595
RM
50
51void ofctrl_flow_table_clear(void);
52
fa44a4a3
RM
53void ovn_group_table_clear(struct group_table *group_table,
54 bool existing);
55
b4e87a48 56#endif /* ovn/ofctrl.h */