ovs-dpctl: Print extended information about vports.
[sliver-openvswitch.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 static inline uint16_t
33 ofp_port_to_odp_port(uint16_t ofp_port)
34 {
35     switch (ofp_port) {
36     case OFPP_LOCAL:
37         return ODPP_LOCAL;
38     case OFPP_NONE:
39         return ODPP_NONE;
40     default:
41         return ofp_port;
42     }
43 }
44
45 static inline uint16_t
46 odp_port_to_ofp_port(uint16_t odp_port)
47 {
48     switch (odp_port) {
49     case ODPP_LOCAL:
50         return OFPP_LOCAL;
51     case ODPP_NONE:
52         return OFPP_NONE;
53     default:
54         return odp_port;
55     }
56 }
57
58 void format_odp_flow_key(struct ds *, const struct odp_flow_key *);
59 int odp_action_len(uint16_t type);
60 void format_odp_action(struct ds *, const struct nlattr *);
61 void format_odp_actions(struct ds *, const struct nlattr *odp_actions,
62                         size_t actions_len);
63 void format_odp_flow_stats(struct ds *, const struct odp_flow_stats *);
64 void format_odp_flow(struct ds *, const struct odp_flow *);
65 void format_odp_port_type(struct ds *, const struct odp_port *);
66
67 void odp_flow_key_from_flow(struct odp_flow_key *, const struct flow *);
68 void odp_flow_key_to_flow(const struct odp_flow_key *, struct flow *);
69
70 static inline bool
71 odp_flow_key_equal(const struct odp_flow_key *a, const struct odp_flow_key *b)
72 {
73     return !memcmp(a, b, sizeof *a);
74 }
75
76 static inline size_t
77 odp_flow_key_hash(const struct odp_flow_key *flow, uint32_t basis)
78 {
79     BUILD_ASSERT_DECL(!(sizeof *flow % sizeof(uint32_t)));
80     return hash_words((const uint32_t *) flow,
81                       sizeof *flow / sizeof(uint32_t), basis);
82 }
83
84 #endif /* odp-util.h */