Prepare Open vSwitch 1.1.2 release.
[sliver-openvswitch.git] / lib / byte-order.h
1 /*
2  * Copyright (c) 2008, 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 #ifndef BYTE_ORDER_H
17 #define BYTE_ORDER_H 1
18
19 #include <arpa/inet.h>
20 #include <sys/types.h>
21 #include <inttypes.h>
22
23 static inline uint64_t
24 htonll(uint64_t n)
25 {
26     return htonl(1) == 1 ? n : ((uint64_t) htonl(n) << 32) | htonl(n >> 32);
27 }
28
29 static inline uint64_t
30 ntohll(uint64_t n)
31 {
32     return htonl(1) == 1 ? n : ((uint64_t) ntohl(n) << 32) | ntohl(n >> 32);
33 }
34
35 /* These macros may substitute for htons(), htonl(), and htonll() in contexts
36  * where function calls are not allowed, such as case labels.  They should not
37  * be used elsewhere because all of them evaluate their argument many times. */
38 #ifdef WORDS_BIGENDIAN
39 #define CONSTANT_HTONS(VALUE) ((uint16_t) (VALUE))
40 #define CONSTANT_HTONL(VALUE) ((uint32_t) (VALUE))
41 #define CONSTANT_HTONLL(VALUE) ((uint64_t) (VALUE))
42 #else
43 #define CONSTANT_HTONS(VALUE)                       \
44         (((((uint16_t) (VALUE)) & 0xff00) >> 8) |   \
45          ((((uint16_t) (VALUE)) & 0x00ff) << 8))
46 #define CONSTANT_HTONL(VALUE)                           \
47         (((((uint32_t) (VALUE)) & 0x000000ff) << 24) |  \
48          ((((uint32_t) (VALUE)) & 0x0000ff00) <<  8) |  \
49          ((((uint32_t) (VALUE)) & 0x00ff0000) >>  8) |  \
50          ((((uint32_t) (VALUE)) & 0xff000000) >> 24))
51 #define CONSTANT_HTONLL(VALUE)                                           \
52         (((((uint64_t) (VALUE)) & UINT64_C(0x00000000000000ff)) << 56) | \
53          ((((uint64_t) (VALUE)) & UINT64_C(0x000000000000ff00)) << 40) | \
54          ((((uint64_t) (VALUE)) & UINT64_C(0x0000000000ff0000)) << 24) | \
55          ((((uint64_t) (VALUE)) & UINT64_C(0x00000000ff000000)) <<  8) | \
56          ((((uint64_t) (VALUE)) & UINT64_C(0x000000ff00000000)) >>  8) | \
57          ((((uint64_t) (VALUE)) & UINT64_C(0x0000ff0000000000)) >> 24) | \
58          ((((uint64_t) (VALUE)) & UINT64_C(0x00ff000000000000)) >> 40) | \
59          ((((uint64_t) (VALUE)) & UINT64_C(0xff00000000000000)) >> 56))
60 #endif
61
62 #endif /* byte-order.h */