odp-util: Bump up maximum number of ODP actions.
[cascardo/ovs.git] / lib / odp-util.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 ODP_UTIL_H
18 #define ODP_UTIL_H 1
19
20 #include <stdbool.h>
21 #include <stddef.h>
22 #include <stdint.h>
23 #include <string.h>
24 #include "hash.h"
25 #include "openflow/openflow.h"
26 #include "openvswitch/datapath-protocol.h"
27 #include "util.h"
28
29 struct ds;
30 struct flow;
31
32 enum { MAX_ODP_ACTIONS = 16384 / sizeof(union odp_action) };
33
34 /* odp_actions_add() assumes that MAX_ODP_ACTIONS is a power of 2. */
35 BUILD_ASSERT_DECL(IS_POW2(MAX_ODP_ACTIONS));
36
37 struct odp_actions {
38     size_t n_actions;
39     union odp_action actions[MAX_ODP_ACTIONS];
40 };
41
42 static inline void
43 odp_actions_init(struct odp_actions *actions)
44 {
45     actions->n_actions = 0;
46 }
47
48 union odp_action *odp_actions_add(struct odp_actions *actions, uint16_t type);
49
50 static inline bool
51 odp_actions_overflow(const struct odp_actions *actions)
52 {
53     return actions->n_actions > MAX_ODP_ACTIONS;
54 }
55
56 static inline uint16_t
57 ofp_port_to_odp_port(uint16_t ofp_port)
58 {
59     switch (ofp_port) {
60     case OFPP_LOCAL:
61         return ODPP_LOCAL;
62     case OFPP_NONE:
63         return ODPP_NONE;
64     default:
65         return ofp_port;
66     }
67 }
68
69 static inline uint16_t
70 odp_port_to_ofp_port(uint16_t odp_port)
71 {
72     switch (odp_port) {
73     case ODPP_LOCAL:
74         return OFPP_LOCAL;
75     case ODPP_NONE:
76         return OFPP_NONE;
77     default:
78         return odp_port;
79     }
80 }
81
82 void format_odp_flow_key(struct ds *, const struct odp_flow_key *);
83 void format_odp_action(struct ds *, const union odp_action *);
84 void format_odp_actions(struct ds *, const union odp_action *actions,
85                         size_t n_actions);
86 void format_odp_flow_stats(struct ds *, const struct odp_flow_stats *);
87 void format_odp_flow(struct ds *, const struct odp_flow *);
88
89 void odp_flow_key_from_flow(struct odp_flow_key *, const struct flow *);
90 void odp_flow_key_to_flow(const struct odp_flow_key *, struct flow *);
91
92 static inline bool
93 odp_flow_key_equal(const struct odp_flow_key *a, const struct odp_flow_key *b)
94 {
95     return !memcmp(a, b, sizeof *a);
96 }
97
98 static inline size_t
99 odp_flow_key_hash(const struct odp_flow_key *flow, uint32_t basis)
100 {
101     BUILD_ASSERT_DECL(!(sizeof *flow % sizeof(uint32_t)));
102     return hash_words((const uint32_t *) flow,
103                       sizeof *flow / sizeof(uint32_t), basis);
104 }
105
106 #endif /* odp-util.h */