/src/openvswitch/lib/byte-order.h
Line | Count | Source |
1 | | /* |
2 | | * Copyright (c) 2008, 2010, 2011, 2013, 2016 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 | | #ifndef BYTE_ORDER_H |
17 | | #define BYTE_ORDER_H 1 |
18 | | |
19 | | #include <sys/types.h> |
20 | | #include <netinet/in.h> |
21 | | #include <arpa/inet.h> |
22 | | #include <inttypes.h> |
23 | | #include "openvswitch/types.h" |
24 | | |
25 | | #ifndef __CHECKER__ |
26 | | #if !(defined(_WIN32) || defined(htonll)) |
27 | | static inline ovs_be64 |
28 | | htonll(uint64_t n) |
29 | 0 | { |
30 | 0 | return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32); |
31 | 0 | } Unexecuted instantiation: socket-util.c:htonll Unexecuted instantiation: stream.c:htonll Unexecuted instantiation: util.c:htonll Unexecuted instantiation: stream-unix.c:htonll Unexecuted instantiation: stream-ssl.c:htonll Unexecuted instantiation: hash.c:htonll Unexecuted instantiation: packets.c:htonll Unexecuted instantiation: stream-tcp.c:htonll Unexecuted instantiation: crc32c.c:htonll Unexecuted instantiation: csum.c:htonll Unexecuted instantiation: dp-packet.c:htonll |
32 | | |
33 | | static inline uint64_t |
34 | | ntohll(ovs_be64 n) |
35 | 0 | { |
36 | 0 | return htonl(1) == 1 ? n : ((uint64_t) ntohl(n) << 32) | ntohl(n >> 32); |
37 | 0 | } Unexecuted instantiation: socket-util.c:ntohll Unexecuted instantiation: stream.c:ntohll Unexecuted instantiation: util.c:ntohll Unexecuted instantiation: stream-unix.c:ntohll Unexecuted instantiation: stream-ssl.c:ntohll Unexecuted instantiation: hash.c:ntohll Unexecuted instantiation: packets.c:ntohll Unexecuted instantiation: stream-tcp.c:ntohll Unexecuted instantiation: crc32c.c:ntohll Unexecuted instantiation: csum.c:ntohll Unexecuted instantiation: dp-packet.c:ntohll |
38 | | #endif /* !(defined(_WIN32) || defined(htonll)) */ |
39 | | #else |
40 | | /* Making sparse happy with these functions also makes them unreadable, so |
41 | | * don't bother to show it their implementations. */ |
42 | | ovs_be64 htonll(uint64_t); |
43 | | uint64_t ntohll(ovs_be64); |
44 | | #endif |
45 | | |
46 | | static inline ovs_be128 |
47 | | hton128(const ovs_u128 src) |
48 | 0 | { |
49 | 0 | ovs_be128 dst; |
50 | 0 |
|
51 | 0 | dst.be64.hi = htonll(src.u64.hi); |
52 | 0 | dst.be64.lo = htonll(src.u64.lo); |
53 | 0 | return dst; |
54 | 0 | } Unexecuted instantiation: socket-util.c:hton128 Unexecuted instantiation: stream.c:hton128 Unexecuted instantiation: util.c:hton128 Unexecuted instantiation: stream-unix.c:hton128 Unexecuted instantiation: stream-ssl.c:hton128 Unexecuted instantiation: hash.c:hton128 Unexecuted instantiation: packets.c:hton128 Unexecuted instantiation: stream-tcp.c:hton128 Unexecuted instantiation: crc32c.c:hton128 Unexecuted instantiation: csum.c:hton128 Unexecuted instantiation: dp-packet.c:hton128 |
55 | | |
56 | | static inline ovs_u128 |
57 | | ntoh128(const ovs_be128 src) |
58 | 0 | { |
59 | 0 | ovs_u128 dst; |
60 | 0 |
|
61 | 0 | dst.u64.hi = ntohll(src.be64.hi); |
62 | 0 | dst.u64.lo = ntohll(src.be64.lo); |
63 | 0 | return dst; |
64 | 0 | } Unexecuted instantiation: socket-util.c:ntoh128 Unexecuted instantiation: stream.c:ntoh128 Unexecuted instantiation: util.c:ntoh128 Unexecuted instantiation: stream-unix.c:ntoh128 Unexecuted instantiation: stream-ssl.c:ntoh128 Unexecuted instantiation: hash.c:ntoh128 Unexecuted instantiation: packets.c:ntoh128 Unexecuted instantiation: stream-tcp.c:ntoh128 Unexecuted instantiation: crc32c.c:ntoh128 Unexecuted instantiation: csum.c:ntoh128 Unexecuted instantiation: dp-packet.c:ntoh128 |
65 | | |
66 | | static inline uint32_t |
67 | 0 | uint32_byteswap(uint32_t crc) { |
68 | 0 | return (((crc & 0x000000ff) << 24) | |
69 | 0 | ((crc & 0x0000ff00) << 8) | |
70 | 0 | ((crc & 0x00ff0000) >> 8) | |
71 | 0 | ((crc & 0xff000000) >> 24)); |
72 | 0 | } Unexecuted instantiation: socket-util.c:uint32_byteswap Unexecuted instantiation: stream.c:uint32_byteswap Unexecuted instantiation: util.c:uint32_byteswap Unexecuted instantiation: stream-unix.c:uint32_byteswap Unexecuted instantiation: stream-ssl.c:uint32_byteswap Unexecuted instantiation: hash.c:uint32_byteswap Unexecuted instantiation: packets.c:uint32_byteswap Unexecuted instantiation: stream-tcp.c:uint32_byteswap Unexecuted instantiation: crc32c.c:uint32_byteswap Unexecuted instantiation: csum.c:uint32_byteswap Unexecuted instantiation: dp-packet.c:uint32_byteswap |
73 | | |
74 | | /* These macros may substitute for htons(), htonl(), and htonll() in contexts |
75 | | * where function calls are not allowed, such as case labels. They should not |
76 | | * be used elsewhere because all of them evaluate their argument many times. */ |
77 | | #if defined(WORDS_BIGENDIAN) || __CHECKER__ |
78 | | #define CONSTANT_HTONS(VALUE) ((OVS_FORCE ovs_be16) ((VALUE) & 0xffff)) |
79 | | #define CONSTANT_HTONL(VALUE) ((OVS_FORCE ovs_be32) ((VALUE) & 0xffffffff)) |
80 | | #define CONSTANT_HTONLL(VALUE) \ |
81 | | ((OVS_FORCE ovs_be64) ((VALUE) & UINT64_C(0xffffffffffffffff))) |
82 | | #else |
83 | | #define CONSTANT_HTONS(VALUE) \ |
84 | | (((((ovs_be16) (VALUE)) & 0xff00) >> 8) | \ |
85 | | ((((ovs_be16) (VALUE)) & 0x00ff) << 8)) |
86 | | #define CONSTANT_HTONL(VALUE) \ |
87 | | (((((ovs_be32) (VALUE)) & 0x000000ff) << 24) | \ |
88 | | ((((ovs_be32) (VALUE)) & 0x0000ff00) << 8) | \ |
89 | | ((((ovs_be32) (VALUE)) & 0x00ff0000) >> 8) | \ |
90 | | ((((ovs_be32) (VALUE)) & 0xff000000) >> 24)) |
91 | | #define CONSTANT_HTONLL(VALUE) \ |
92 | | (((((ovs_be64) (VALUE)) & UINT64_C(0x00000000000000ff)) << 56) | \ |
93 | | ((((ovs_be64) (VALUE)) & UINT64_C(0x000000000000ff00)) << 40) | \ |
94 | | ((((ovs_be64) (VALUE)) & UINT64_C(0x0000000000ff0000)) << 24) | \ |
95 | | ((((ovs_be64) (VALUE)) & UINT64_C(0x00000000ff000000)) << 8) | \ |
96 | | ((((ovs_be64) (VALUE)) & UINT64_C(0x000000ff00000000)) >> 8) | \ |
97 | | ((((ovs_be64) (VALUE)) & UINT64_C(0x0000ff0000000000)) >> 24) | \ |
98 | | ((((ovs_be64) (VALUE)) & UINT64_C(0x00ff000000000000)) >> 40) | \ |
99 | | ((((ovs_be64) (VALUE)) & UINT64_C(0xff00000000000000)) >> 56)) |
100 | | #endif |
101 | | |
102 | | /* Returns the ovs_be32 that you would get from: |
103 | | * |
104 | | * union { uint8_t b[4]; ovs_be32 be32; } x = { .b = { b0, b1, b2, b3 } }; |
105 | | * return x.be32; |
106 | | * |
107 | | * but without the undefined behavior. */ |
108 | | static inline ovs_be32 |
109 | | bytes_to_be32(uint8_t b0, uint8_t b1, uint8_t b2, uint8_t b3) |
110 | 0 | { |
111 | 0 | #if WORDS_BIGENDIAN |
112 | 0 | uint32_t x = ((uint32_t) b0 << 24) | (b1 << 16) | (b2 << 8) | b3; |
113 | 0 | #else |
114 | 0 | uint32_t x = ((uint32_t) b3 << 24) | (b2 << 16) | (b1 << 8) | b0; |
115 | 0 | #endif |
116 | 0 | return (OVS_FORCE ovs_be32) x; |
117 | 0 | } Unexecuted instantiation: socket-util.c:bytes_to_be32 Unexecuted instantiation: stream.c:bytes_to_be32 Unexecuted instantiation: util.c:bytes_to_be32 Unexecuted instantiation: stream-unix.c:bytes_to_be32 Unexecuted instantiation: stream-ssl.c:bytes_to_be32 Unexecuted instantiation: hash.c:bytes_to_be32 Unexecuted instantiation: packets.c:bytes_to_be32 Unexecuted instantiation: stream-tcp.c:bytes_to_be32 Unexecuted instantiation: crc32c.c:bytes_to_be32 Unexecuted instantiation: csum.c:bytes_to_be32 Unexecuted instantiation: dp-packet.c:bytes_to_be32 |
118 | | |
119 | | /* These functions zero-extend big-endian values to longer ones, |
120 | | * or truncate long big-endian value to shorter ones. */ |
121 | | #ifndef __CHECKER__ |
122 | | #if WORDS_BIGENDIAN |
123 | | static inline ovs_be32 be16_to_be32(ovs_be16 x) { return x; } |
124 | | static inline ovs_be64 be16_to_be64(ovs_be16 x) { return x; } |
125 | | static inline ovs_be64 be32_to_be64(ovs_be32 x) { return x; } |
126 | | static inline ovs_be32 be64_to_be32(ovs_be64 x) { return x; } |
127 | | static inline ovs_be16 be64_to_be16(ovs_be64 x) { return x; } |
128 | | static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x; } |
129 | | #else /* !WORDS_BIGENDIAN */ |
130 | 0 | static inline ovs_be32 be16_to_be32(ovs_be16 x) { return (ovs_be32) x << 16; } Unexecuted instantiation: socket-util.c:be16_to_be32 Unexecuted instantiation: stream.c:be16_to_be32 Unexecuted instantiation: util.c:be16_to_be32 Unexecuted instantiation: stream-unix.c:be16_to_be32 Unexecuted instantiation: stream-ssl.c:be16_to_be32 Unexecuted instantiation: hash.c:be16_to_be32 Unexecuted instantiation: packets.c:be16_to_be32 Unexecuted instantiation: stream-tcp.c:be16_to_be32 Unexecuted instantiation: crc32c.c:be16_to_be32 Unexecuted instantiation: csum.c:be16_to_be32 Unexecuted instantiation: dp-packet.c:be16_to_be32 |
131 | 0 | static inline ovs_be64 be16_to_be64(ovs_be16 x) { return (ovs_be64) x << 48; } Unexecuted instantiation: socket-util.c:be16_to_be64 Unexecuted instantiation: stream.c:be16_to_be64 Unexecuted instantiation: util.c:be16_to_be64 Unexecuted instantiation: stream-unix.c:be16_to_be64 Unexecuted instantiation: stream-ssl.c:be16_to_be64 Unexecuted instantiation: hash.c:be16_to_be64 Unexecuted instantiation: packets.c:be16_to_be64 Unexecuted instantiation: stream-tcp.c:be16_to_be64 Unexecuted instantiation: crc32c.c:be16_to_be64 Unexecuted instantiation: csum.c:be16_to_be64 Unexecuted instantiation: dp-packet.c:be16_to_be64 |
132 | 0 | static inline ovs_be64 be32_to_be64(ovs_be32 x) { return (ovs_be64) x << 32; } Unexecuted instantiation: socket-util.c:be32_to_be64 Unexecuted instantiation: stream.c:be32_to_be64 Unexecuted instantiation: util.c:be32_to_be64 Unexecuted instantiation: stream-unix.c:be32_to_be64 Unexecuted instantiation: stream-ssl.c:be32_to_be64 Unexecuted instantiation: hash.c:be32_to_be64 Unexecuted instantiation: packets.c:be32_to_be64 Unexecuted instantiation: stream-tcp.c:be32_to_be64 Unexecuted instantiation: crc32c.c:be32_to_be64 Unexecuted instantiation: csum.c:be32_to_be64 Unexecuted instantiation: dp-packet.c:be32_to_be64 |
133 | 0 | static inline ovs_be32 be64_to_be32(ovs_be64 x) { return x >> 32; } Unexecuted instantiation: socket-util.c:be64_to_be32 Unexecuted instantiation: stream.c:be64_to_be32 Unexecuted instantiation: util.c:be64_to_be32 Unexecuted instantiation: stream-unix.c:be64_to_be32 Unexecuted instantiation: stream-ssl.c:be64_to_be32 Unexecuted instantiation: hash.c:be64_to_be32 Unexecuted instantiation: packets.c:be64_to_be32 Unexecuted instantiation: stream-tcp.c:be64_to_be32 Unexecuted instantiation: crc32c.c:be64_to_be32 Unexecuted instantiation: csum.c:be64_to_be32 Unexecuted instantiation: dp-packet.c:be64_to_be32 |
134 | 0 | static inline ovs_be16 be64_to_be16(ovs_be64 x) { return x >> 48; } Unexecuted instantiation: socket-util.c:be64_to_be16 Unexecuted instantiation: stream.c:be64_to_be16 Unexecuted instantiation: util.c:be64_to_be16 Unexecuted instantiation: stream-unix.c:be64_to_be16 Unexecuted instantiation: stream-ssl.c:be64_to_be16 Unexecuted instantiation: hash.c:be64_to_be16 Unexecuted instantiation: packets.c:be64_to_be16 Unexecuted instantiation: stream-tcp.c:be64_to_be16 Unexecuted instantiation: crc32c.c:be64_to_be16 Unexecuted instantiation: csum.c:be64_to_be16 Unexecuted instantiation: dp-packet.c:be64_to_be16 |
135 | 0 | static inline ovs_be16 be32_to_be16(ovs_be32 x) { return x >> 16; } Unexecuted instantiation: socket-util.c:be32_to_be16 Unexecuted instantiation: stream.c:be32_to_be16 Unexecuted instantiation: util.c:be32_to_be16 Unexecuted instantiation: stream-unix.c:be32_to_be16 Unexecuted instantiation: stream-ssl.c:be32_to_be16 Unexecuted instantiation: hash.c:be32_to_be16 Unexecuted instantiation: packets.c:be32_to_be16 Unexecuted instantiation: stream-tcp.c:be32_to_be16 Unexecuted instantiation: crc32c.c:be32_to_be16 Unexecuted instantiation: csum.c:be32_to_be16 Unexecuted instantiation: dp-packet.c:be32_to_be16 |
136 | | #endif /* !WORDS_BIGENDIAN */ |
137 | | #else /* __CHECKER__ */ |
138 | | /* Making sparse happy with these functions also makes them unreadable, so |
139 | | * don't bother to show it their implementations. */ |
140 | | ovs_be32 be16_to_be32(ovs_be16); |
141 | | ovs_be64 be16_to_be64(ovs_be16); |
142 | | ovs_be64 be32_to_be64(ovs_be32); |
143 | | ovs_be32 be64_to_be32(ovs_be64); |
144 | | ovs_be16 be64_to_be16(ovs_be64); |
145 | | ovs_be16 be32_to_be16(ovs_be32); |
146 | | #endif |
147 | | |
148 | | #endif /* byte-order.h */ |