1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996-2009 Oracle. All rights reserved.
*/
/*
* Copyright (c) 1990, 1993, 1994
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id$
*/
#ifndef _DB_SWAP_H_
#define _DB_SWAP_H_
#if defined(__cplusplus)
extern "C" {
#endif
/*
* Little endian <==> big endian 64-bit swap macros.
* M_64_SWAP swap a memory location
* P_64_COPY copy potentially unaligned 4 byte quantities
* P_64_SWAP swap a referenced memory location
*/
#undef M_64_SWAP
#define M_64_SWAP(a) { \
u_int64_t _tmp; \
_tmp = (u_int64_t)a; \
((u_int8_t *)&a)[0] = ((u_int8_t *)&_tmp)[7]; \
((u_int8_t *)&a)[1] = ((u_int8_t *)&_tmp)[6]; \
((u_int8_t *)&a)[2] = ((u_int8_t *)&_tmp)[5]; \
((u_int8_t *)&a)[3] = ((u_int8_t *)&_tmp)[4]; \
((u_int8_t *)&a)[4] = ((u_int8_t *)&_tmp)[3]; \
((u_int8_t *)&a)[5] = ((u_int8_t *)&_tmp)[2]; \
((u_int8_t *)&a)[6] = ((u_int8_t *)&_tmp)[1]; \
((u_int8_t *)&a)[7] = ((u_int8_t *)&_tmp)[0]; \
}
#undef P_64_COPY
#define P_64_COPY(a, b) { \
((u_int8_t *)b)[0] = ((u_int8_t *)a)[0]; \
((u_int8_t *)b)[1] = ((u_int8_t *)a)[1]; \
((u_int8_t *)b)[2] = ((u_int8_t *)a)[2]; \
((u_int8_t *)b)[3] = ((u_int8_t *)a)[3]; \
((u_int8_t *)b)[4] = ((u_int8_t *)a)[4]; \
((u_int8_t *)b)[5] = ((u_int8_t *)a)[5]; \
((u_int8_t *)b)[6] = ((u_int8_t *)a)[6]; \
((u_int8_t *)b)[7] = ((u_int8_t *)a)[7]; \
}
#undef P_64_SWAP
#define P_64_SWAP(a) { \
u_int64_t _tmp; \
P_64_COPY(a, &_tmp); \
((u_int8_t *)a)[0] = ((u_int8_t *)&_tmp)[7]; \
((u_int8_t *)a)[1] = ((u_int8_t *)&_tmp)[6]; \
((u_int8_t *)a)[2] = ((u_int8_t *)&_tmp)[5]; \
((u_int8_t *)a)[3] = ((u_int8_t *)&_tmp)[4]; \
((u_int8_t *)a)[4] = ((u_int8_t *)&_tmp)[3]; \
((u_int8_t *)a)[5] = ((u_int8_t *)&_tmp)[2]; \
((u_int8_t *)a)[6] = ((u_int8_t *)&_tmp)[1]; \
((u_int8_t *)a)[7] = ((u_int8_t *)&_tmp)[0]; \
}
/*
* Little endian <==> big endian 32-bit swap macros.
* P_32_COPY copy potentially unaligned 4 byte quantities
* P_32_COPYSWAP copy and swap potentially unaligned 4 byte quantities
* P_32_SWAP swap a referenced memory location
* M_32_SWAP swap a memory location
*/
#undef P_32_COPY
#define P_32_COPY(a, b) do { \
((u_int8_t *)b)[0] = ((u_int8_t *)a)[0]; \
((u_int8_t *)b)[1] = ((u_int8_t *)a)[1]; \
((u_int8_t *)b)[2] = ((u_int8_t *)a)[2]; \
((u_int8_t *)b)[3] = ((u_int8_t *)a)[3]; \
} while (0)
#undef P_32_COPYSWAP
#define P_32_COPYSWAP(a, b) do { \
((u_int8_t *)b)[0] = ((u_int8_t *)a)[3]; \
((u_int8_t *)b)[1] = ((u_int8_t *)a)[2]; \
((u_int8_t *)b)[2] = ((u_int8_t *)a)[1]; \
((u_int8_t *)b)[3] = ((u_int8_t *)a)[0]; \
} while (0)
#undef P_32_SWAP
#define P_32_SWAP(a) do { \
u_int32_t _tmp; \
P_32_COPY(a, &_tmp); \
P_32_COPYSWAP(&_tmp, a); \
} while (0)
#undef M_32_SWAP
#define M_32_SWAP(a) P_32_SWAP(&a)
/*
* Little endian <==> big endian 16-bit swap macros.
* P_16_COPY copy potentially unaligned 2 byte quantities
* P_16_COPYSWAP copy and swap potentially unaligned 2 byte quantities
* P_16_SWAP swap a referenced memory location
* M_16_SWAP swap a memory location
*/
#undef P_16_COPY
#define P_16_COPY(a, b) do { \
((u_int8_t *)b)[0] = ((u_int8_t *)a)[0]; \
((u_int8_t *)b)[1] = ((u_int8_t *)a)[1]; \
} while (0)
#undef P_16_COPYSWAP
#define P_16_COPYSWAP(a, b) do { \
((u_int8_t *)b)[0] = ((u_int8_t *)a)[1]; \
((u_int8_t *)b)[1] = ((u_int8_t *)a)[0]; \
} while (0)
#undef P_16_SWAP
#define P_16_SWAP(a) do { \
u_int16_t _tmp; \
P_16_COPY(a, &_tmp); \
P_16_COPYSWAP(&_tmp, a); \
} while (0)
#undef M_16_SWAP
#define M_16_SWAP(a) P_16_SWAP(&a)
#undef SWAP32
#define SWAP32(p) { \
P_32_SWAP(p); \
(p) += sizeof(u_int32_t); \
}
#undef SWAP16
#define SWAP16(p) { \
P_16_SWAP(p); \
(p) += sizeof(u_int16_t); \
}
/*
* Berkeley DB has local versions of htonl() and ntohl() that operate on
* pointers to the right size memory locations; the portability magic for
* finding the real system functions isn't worth the effort.
*/
#undef DB_HTONL_SWAP
#define DB_HTONL_SWAP(env, p) do { \
if (F_ISSET((env), ENV_LITTLEENDIAN)) \
P_32_SWAP(p); \
} while (0)
#undef DB_NTOHL_SWAP
#define DB_NTOHL_SWAP(env, p) do { \
if (F_ISSET((env), ENV_LITTLEENDIAN)) \
P_32_SWAP(p); \
} while (0)
#undef DB_NTOHL_COPYIN
#define DB_NTOHL_COPYIN(env, i, p) do { \
u_int8_t *tmp; \
tmp = (u_int8_t *)&(i); \
if (F_ISSET(env, ENV_LITTLEENDIAN)) { \
tmp[3] = *p++; \
tmp[2] = *p++; \
tmp[1] = *p++; \
tmp[0] = *p++; \
} else { \
memcpy(&i, p, sizeof(u_int32_t)); \
p = (u_int8_t *)p + sizeof(u_int32_t); \
} \
} while (0)
#undef DB_NTOHS_COPYIN
#define DB_NTOHS_COPYIN(env, i, p) do { \
u_int8_t *tmp; \
tmp = (u_int8_t *)&(i); \
if (F_ISSET(env, ENV_LITTLEENDIAN)) { \
tmp[1] = *p++; \
tmp[0] = *p++; \
} else { \
memcpy(&i, p, sizeof(u_int16_t)); \
p = (u_int8_t *)p + sizeof(u_int16_t); \
} \
} while (0)
#undef DB_HTONL_COPYOUT
#define DB_HTONL_COPYOUT(env, p, i) do { \
u_int8_t *tmp; \
tmp = (u_int8_t *)p; \
if (F_ISSET(env, ENV_LITTLEENDIAN)) { \
*tmp++ = ((u_int8_t *)&(i))[3]; \
*tmp++ = ((u_int8_t *)&(i))[2]; \
*tmp++ = ((u_int8_t *)&(i))[1]; \
*tmp++ = ((u_int8_t *)&(i))[0]; \
} else \
memcpy(p, &i, sizeof(u_int32_t)); \
p = (u_int8_t *)p + sizeof(u_int32_t); \
} while (0)
#undef DB_HTONS_COPYOUT
#define DB_HTONS_COPYOUT(env, p, i) do { \
u_int8_t *tmp; \
tmp = (u_int8_t *)p; \
if (F_ISSET(env, ENV_LITTLEENDIAN)) { \
*tmp++ = ((u_int8_t *)&(i))[1]; \
*tmp++ = ((u_int8_t *)&(i))[0]; \
} else \
memcpy(p, &i, sizeof(u_int16_t)); \
p = (u_int8_t *)p + sizeof(u_int16_t); \
} while (0)
/*
* Helper macros for swapped logs. We write logs in little endian format to
* minimize disruption on x86 when upgrading from native byte order to
* platform-independent logs.
*/
#define LOG_SWAPPED(env) !F_ISSET(env, ENV_LITTLEENDIAN)
#define LOGCOPY_32(env, x, p) do { \
if (LOG_SWAPPED(env)) \
P_32_COPYSWAP((p), (x)); \
else \
memcpy((x), (p), sizeof(u_int32_t)); \
} while (0)
#define LOGCOPY_16(env, x, p) do { \
if (LOG_SWAPPED(env)) \
P_16_COPYSWAP((p), (x)); \
else \
memcpy((x), (p), sizeof(u_int16_t)); \
} while (0)
#define LOGCOPY_TOLSN(env, lsnp, p) do { \
LOGCOPY_32((env), &(lsnp)->file, (p)); \
LOGCOPY_32((env), &(lsnp)->offset, \
(u_int8_t *)(p) + sizeof(u_int32_t)); \
} while (0)
#define LOGCOPY_FROMLSN(env, p, lsnp) do { \
LOGCOPY_32((env), (p), &(lsnp)->file); \
LOGCOPY_32((env), \
(u_int8_t *)(p) + sizeof(u_int32_t), &(lsnp)->offset); \
} while (0)
#if defined(__cplusplus)
}
#endif
#endif /* !_DB_SWAP_H_ */
|