Blame view

RIOT/core/include/byteorder.h 11.9 KB
a752c7ab   elopes   add first test an...
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
  /*
   * Copyright (C) 2014 René Kijewski
   *
   * This file is subject to the terms and conditions of the GNU Lesser
   * General Public License v2.1. See the file LICENSE in the top level
   * directory for more details.
   */
  
  /**
   * @addtogroup     core_util
   * @{
   *
   * @file
   * @brief          Functions to work with different byte orders.
   *
   * @author         René Kijewski <rene.kijewski@fu-berlin.de>
   */
  
  #ifndef BYTEORDER_H
  #define BYTEORDER_H
  
  #include <stdint.h>
  
  #if defined(__MACH__)
  #   include "clang_compat.h"
  #endif
  
  #ifdef __cplusplus
  extern "C" {
  #endif
  
  /* ******************************* INTERFACE ******************************* */
  
  
  /**
   * @brief          A 16 bit integer in little endian.
   * @details        This is a wrapper around an uint16_t to catch missing conversions
   *                 between different byte orders at compile time.
   */
  typedef union __attribute__((packed)) {
      uint16_t    u16;    /**< 16 bit representation */
      uint8_t      u8[2]; /**< 8 bit representation */
  } le_uint16_t;
  
  /**
   * @brief          A 32 bit integer in little endian.
   * @details        This is a wrapper around an uint32_t to catch missing conversions
   *                 between different byte orders at compile time.
   */
  typedef union __attribute__((packed)) {
      uint32_t    u32;    /**< 32 bit representation */
      uint8_t      u8[4]; /**< 8 bit representation */
      uint16_t    u16[2]; /**< 16 bit representation */
      le_uint16_t l16[2]; /**< little endian 16 bit representation */
  } le_uint32_t;
  
  /**
   * @brief          A 64 bit integer in little endian.
   * @details        This is a wrapper around an uint64_t to catch missing conversions
   *                 between different byte orders at compile time.
   */
  typedef union __attribute__((packed)) {
      uint64_t    u64;    /**< 64 bit representation */
      uint8_t      u8[8]; /**< 8 bit representation */
      uint16_t    u16[4]; /**< 16 bit representation */
      uint32_t    u32[2]; /**< 32 bit representation */
      le_uint16_t l16[4]; /**< little endian 16 bit representation */
      le_uint32_t l32[2]; /**< little endian 32 bit representation */
  } le_uint64_t;
  
  /**
   * @brief          A 16 bit integer in big endian aka network byte order.
   * @details        This is a wrapper around an uint16_t to catch missing conversions
   *                 between different byte orders at compile time.
   */
  typedef union __attribute__((packed)) {
      uint16_t    u16;    /**< 16 bit representation */
      uint8_t      u8[2]; /**< 8 bit representation */
  } be_uint16_t;
  
  /**
   * @brief          A 32 bit integer in big endian aka network byte order.
   * @details        This is a wrapper around an uint32_t to catch missing conversions
   *                 between different byte orders at compile time.
   */
  typedef union __attribute__((packed)) {
      uint32_t    u32;    /**< 32 bit representation */
      uint8_t      u8[4]; /**< 8 bit representation */
      uint16_t    u16[2]; /**< 16 bit representation */
      be_uint16_t b16[2]; /**< big endian 16 bit representation */
  } be_uint32_t;
  
  /**
   * @brief          A 64 bit integer in big endian aka network byte order.
   * @details        This is a wrapper around an uint64_t to catch missing conversions
   *                 between different byte orders at compile time.
   */
  typedef union __attribute__((packed)) {
      uint64_t    u64;    /**< 64 bit representation */
      uint8_t      u8[8]; /**< 8 bit representation */
      uint16_t    u16[4]; /**< 16 bit representation */
      uint32_t    u32[2]; /**< 32 bit representation */
      be_uint16_t b16[4]; /**< big endian 16 bit representation */
      be_uint32_t b32[2]; /**< big endian 32 bit representation */
  } be_uint64_t;
  
  /**
   * @brief A 16 bit integer in network byte order.
   */
  typedef be_uint16_t network_uint16_t;
  
  /**
   * @brief A 32 bit integer in network byte order.
   */
  typedef be_uint32_t network_uint32_t;
  
  /**
   * @brief A 64 bit integer in network byte order.
   */
  typedef be_uint64_t network_uint64_t;
  
  /**
   * @brief          Convert from little endian to big endian, 16 bit.
   * @param[in]      v   The integer in little endian.
   * @returns        `v` converted to big endian.
   */
  static inline be_uint16_t byteorder_ltobs(le_uint16_t v);
  
  /**
   * @brief          Convert from little endian to big endian, 32 bit.
   * @param[in]      v   The integer in little endian.
   * @returns        `v` converted to big endian.
   */
  static inline be_uint32_t byteorder_ltobl(le_uint32_t v);
  
  /**
   * @brief          Convert from little endian to big endian, 64 bit.
   * @param[in]      v   The integer in little endian.
   * @returns        `v` converted to big endian.
   */
  static inline be_uint64_t byteorder_ltobll(le_uint64_t v);
  
  /**
   * @brief          Convert from big endian to little endian, 16 bit.
   * @param[in]      v   The integer in big endian.
   * @returns        `v` converted to little endian.
   */
  static inline le_uint16_t byteorder_btols(be_uint16_t v);
  
  /**
   * @brief          Convert from big endian to little endian, 32 bit.
   * @param[in]      v   The integer in big endian.
   * @returns        `v` converted to little endian.
   */
  static inline le_uint32_t byteorder_btoll(be_uint32_t v);
  
  /**
   * @brief          Convert from big endian to little endian, 64 bit.
   * @param[in]      v   The integer in big endian.
   * @returns        `v` converted to little endian.
   */
  static inline le_uint64_t byteorder_btolll(be_uint64_t v);
  
  /**
   * @brief          Convert from host byte order to network byte order, 16 bit.
   * @param[in]      v   The integer in host byte order.
   * @returns        `v` converted to network byte order.
   */
  static inline network_uint16_t byteorder_htons(uint16_t v);
  
  /**
   * @brief          Convert from host byte order to network byte order, 32 bit.
   * @param[in]      v   The integer in host byte order.
   * @returns        `v` converted to network byte order.
   */
  static inline network_uint32_t byteorder_htonl(uint32_t v);
  
  /**
   * @brief          Convert from host byte order to network byte order, 64 bit.
   * @param[in]      v   The integer in host byte order.
   * @returns        `v` converted to network byte order.
   */
  static inline network_uint64_t byteorder_htonll(uint64_t v);
  
  /**
   * @brief          Convert from network byte order to host byte order, 16 bit.
   * @param[in]      v   The integer in network byte order.
   * @returns        `v` converted to host byte order.
   */
  static inline uint16_t byteorder_ntohs(network_uint16_t v);
  
  /**
   * @brief          Convert from network byte order to host byte order, 32 bit.
   * @param[in]      v   The integer in network byte order.
   * @returns        `v` converted to host byte order.
   */
  static inline uint32_t byteorder_ntohl(network_uint32_t v);
  
  /**
   * @brief          Convert from network byte order to host byte order, 64 bit.
   * @param[in]      v   The integer in network byte order.
   * @returns        `v` converted to host byte order.
   */
  static inline uint64_t byteorder_ntohll(network_uint64_t v);
  
  /**
   * @brief          Swap byte order, 16 bit.
   * @param[in]      v   The integer to swap.
   * @returns        The swapped integer.
   */
  static inline uint16_t byteorder_swaps(uint16_t v);
  
  /**
   * @brief          Swap byte order, 32 bit.
   * @param[in]      v   The integer to swap.
   * @returns        The swapped integer.
   */
  static inline uint32_t byteorder_swapl(uint32_t v);
  
  /**
   * @brief          Swap byte order, 64 bit.
   * @param[in]      v   The integer to swap.
   * @returns        The swapped integer.
   */
  static inline uint64_t byteorder_swapll(uint64_t v);
  
  /**
   * @brief          Convert from host byte order to network byte order, 16 bit.
   * @see            byteorder_htons()
   * @param[in]      v   The integer to convert.
   * @returns        Converted integer.
   */
  static inline uint16_t htons(uint16_t v);
  
  /**
   * @brief          Convert from host byte order to network byte order, 32 bit.
   * @see            byteorder_htonl()
   * @param[in]      v   The integer to convert.
   * @returns        Converted integer.
   */
  static inline uint32_t htonl(uint32_t v);
  
  /**
   * @brief          Convert from host byte order to network byte order, 64 bit.
   * @see            byteorder_htonll()
   * @param[in]      v   The integer to convert.
   * @returns        Converted integer.
   */
  static inline uint64_t htonll(uint64_t v);
  
  /**
   * @brief          Convert from network byte order to host byte order, 16 bit.
   * @see            byteorder_ntohs()
   * @param[in]      v   The integer to convert.
   * @returns        Converted integer.
   */
  static inline uint16_t ntohs(uint16_t v);
  
  /**
   * @brief          Convert from network byte order to host byte order, 32 bit.
   * @see            byteorder_ntohl()
   * @param[in]      v   The integer to convert.
   * @returns        Converted integer.
   */
  static inline uint32_t ntohl(uint32_t v);
  
  /**
   * @brief          Convert from network byte order to host byte order, 64 bit.
   * @see            byteorder_ntohll()
   * @param[in]      v   The integer to convert.
   * @returns        Converted integer.
   */
  static inline uint64_t ntohll(uint64_t v);
  
  
  /* **************************** IMPLEMENTATION ***************************** */
  
  #ifdef HAVE_NO_BUILTIN_BSWAP16
  static inline unsigned short __builtin_bswap16(unsigned short a)
  {
      return (a<<8)|(a>>8);
  }
  #endif
  
  static inline uint16_t byteorder_swaps(uint16_t v)
  {
  #ifndef MODULE_MSP430_COMMON
      return __builtin_bswap16(v);
  #else
      network_uint16_t result = { v };
      uint8_t tmp = result.u8[0];
      result.u8[0] = result.u8[1];
      result.u8[1] = tmp;
      return result.u16;
  #endif
  }
  
  static inline uint32_t byteorder_swapl(uint32_t v)
  {
      return __builtin_bswap32(v);
  }
  
  static inline uint64_t byteorder_swapll(uint64_t v)
  {
      return __builtin_bswap64(v);
  }
  
  static inline be_uint16_t byteorder_ltobs(le_uint16_t v)
  {
      be_uint16_t result = { byteorder_swaps(v.u16) };
      return result;
  }
  
  static inline be_uint32_t byteorder_ltobl(le_uint32_t v)
  {
      be_uint32_t result = { byteorder_swapl(v.u32) };
      return result;
  }
  
  static inline be_uint64_t byteorder_ltobll(le_uint64_t v)
  {
      be_uint64_t result = { byteorder_swapll(v.u64) };
      return result;
  }
  
  static inline le_uint16_t byteorder_btols(be_uint16_t v)
  {
      le_uint16_t result = { byteorder_swaps(v.u16) };
      return result;
  }
  
  static inline le_uint32_t byteorder_btoll(be_uint32_t v)
  {
      le_uint32_t result = { byteorder_swapl(v.u32) };
      return result;
  }
  
  static inline le_uint64_t byteorder_btolll(be_uint64_t v)
  {
      le_uint64_t result = { byteorder_swapll(v.u64) };
      return result;
  }
  
  /**
   * @brief Swaps the byteorder according to the endianess
   */
  #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
  #   define _byteorder_swap(V, T) (byteorder_swap##T((V)))
  #elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
  #   define _byteorder_swap(V, T) (V)
  #else
  #   error "Byte order is neither little nor big!"
  #endif
  
  static inline network_uint16_t byteorder_htons(uint16_t v)
  {
      network_uint16_t result = { _byteorder_swap(v, s) };
      return result;
  }
  
  static inline network_uint32_t byteorder_htonl(uint32_t v)
  {
      network_uint32_t result = { _byteorder_swap(v, l) };
      return result;
  }
  
  static inline network_uint64_t byteorder_htonll(uint64_t v)
  {
      network_uint64_t result = { _byteorder_swap(v, ll) };
      return result;
  }
  
  static inline uint16_t byteorder_ntohs(network_uint16_t v)
  {
      return _byteorder_swap(v.u16, s);
  }
  
  static inline uint32_t byteorder_ntohl(network_uint32_t v)
  {
      return _byteorder_swap(v.u32, l);
  }
  
  static inline uint64_t byteorder_ntohll(network_uint64_t v)
  {
      return _byteorder_swap(v.u64, ll);
  }
  
  static inline uint16_t htons(uint16_t v)
  {
      return byteorder_htons(v).u16;
  }
  
  static inline uint32_t htonl(uint32_t v)
  {
      return byteorder_htonl(v).u32;
  }
  
  static inline uint64_t htonll(uint64_t v)
  {
      return byteorder_htonll(v).u64;
  }
  
  static inline uint16_t ntohs(uint16_t v)
  {
      network_uint16_t input = { v };
      return byteorder_ntohs(input);
  }
  
  static inline uint32_t ntohl(uint32_t v)
  {
      network_uint32_t input = { v };
      return byteorder_ntohl(input);
  }
  
  static inline uint64_t ntohll(uint64_t v)
  {
      network_uint64_t input = { v };
      return byteorder_ntohll(input);
  }
  
  #ifdef __cplusplus
  }
  #endif
  
  #endif /* BYTEORDER_H */
  /** @} */