aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/pint.h
blob: feb85e40f9ffd8e99b48cf25b94593a016f14c73 (plain)
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
/** @file
 *
 * Definitions for extracting and translating integers safely and portably
 * via pointers.
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef __PINT_H__
#define __PINT_H__

#include <glib.h>

/* Routines that take a possibly-unaligned pointer to a 16-bit, 24-bit,
 * 32-bit, 40-bit, ... 64-bit integral quantity, in a particular byte
 * order, and fetch the value and return it in host byte order.
 *
 * The pntohN() routines fetch big-endian values; the pletohN() routines
 * fetch little-endian values.
 */

static inline guint16 pntoh16(const void *p)
{
    return (guint16)*((const guint8 *)(p)+0)<<8|
           (guint16)*((const guint8 *)(p)+1)<<0;
}

static inline guint32 pntoh24(const void *p)
{
    return (guint32)*((const guint8 *)(p)+0)<<16|
           (guint32)*((const guint8 *)(p)+1)<<8|
           (guint32)*((const guint8 *)(p)+2)<<0;
}

static inline guint32 pntoh32(const void *p)
{
    return (guint32)*((const guint8 *)(p)+0)<<24|
           (guint32)*((const guint8 *)(p)+1)<<16|
           (guint32)*((const guint8 *)(p)+2)<<8|
           (guint32)*((const guint8 *)(p)+3)<<0;
}

static inline guint64 pntoh40(const void *p)
{
    return (guint64)*((const guint8 *)(p)+0)<<32|
           (guint64)*((const guint8 *)(p)+1)<<24|
           (guint64)*((const guint8 *)(p)+2)<<16|
           (guint64)*((const guint8 *)(p)+3)<<8|
           (guint64)*((const guint8 *)(p)+4)<<0;
}

static inline guint64 pntoh48(const void *p)
{
    return (guint64)*((const guint8 *)(p)+0)<<40|
           (guint64)*((const guint8 *)(p)+1)<<32|
           (guint64)*((const guint8 *)(p)+2)<<24|
           (guint64)*((const guint8 *)(p)+3)<<16|
           (guint64)*((const guint8 *)(p)+4)<<8|
           (guint64)*((const guint8 *)(p)+5)<<0;
}

static inline guint64 pntoh56(const void *p)
{
    return (guint64)*((const guint8 *)(p)+0)<<48|
           (guint64)*((const guint8 *)(p)+1)<<40|
           (guint64)*((const guint8 *)(p)+2)<<32|
           (guint64)*((const guint8 *)(p)+3)<<24|
           (guint64)*((const guint8 *)(p)+4)<<16|
           (guint64)*((const guint8 *)(p)+5)<<8|
           (guint64)*((const guint8 *)(p)+6)<<0;
}

static inline guint64 pntoh64(const void *p)
{
    return (guint64)*((const guint8 *)(p)+0)<<56|
           (guint64)*((const guint8 *)(p)+1)<<48|
           (guint64)*((const guint8 *)(p)+2)<<40|
           (guint64)*((const guint8 *)(p)+3)<<32|
           (guint64)*((const guint8 *)(p)+4)<<24|
           (guint64)*((const guint8 *)(p)+5)<<16|
           (guint64)*((const guint8 *)(p)+6)<<8|
           (guint64)*((const guint8 *)(p)+7)<<0;
}

static inline guint16 pletoh16(const void *p)
{
    return (guint16)*((const guint8 *)(p)+1)<<8|
           (guint16)*((const guint8 *)(p)+0)<<0;
}

static inline guint32 pletoh24(const void *p)
{
    return (guint32)*((const guint8 *)(p)+2)<<16|
           (guint32)*((const guint8 *)(p)+1)<<8|
           (guint32)*((const guint8 *)(p)+0)<<0;
}

static inline guint32 pletoh32(const void *p)
{
    return (guint32)*((const guint8 *)(p)+3)<<24|
           (guint32)*((const guint8 *)(p)+2)<<16|
           (guint32)*((const guint8 *)(p)+1)<<8|
           (guint32)*((const guint8 *)(p)+0)<<0;
}

static inline guint64 pletoh40(const void *p)
{
    return (guint64)*((const guint8 *)(p)+4)<<32|
           (guint64)*((const guint8 *)(p)+3)<<24|
           (guint64)*((const guint8 *)(p)+2)<<16|
           (guint64)*((const guint8 *)(p)+1)<<8|
           (guint64)*((const guint8 *)(p)+0)<<0;
}

static inline guint64 pletoh48(const void *p)
{
    return (guint64)*((const guint8 *)(p)+5)<<40|
           (guint64)*((const guint8 *)(p)+4)<<32|
           (guint64)*((const guint8 *)(p)+3)<<24|
           (guint64)*((const guint8 *)(p)+2)<<16|
           (guint64)*((const guint8 *)(p)+1)<<8|
           (guint64)*((const guint8 *)(p)+0)<<0;
}

static inline guint64 pletoh56(const void *p)
{
    return (guint64)*((const guint8 *)(p)+6)<<48|
           (guint64)*((const guint8 *)(p)+5)<<40|
           (guint64)*((const guint8 *)(p)+4)<<32|
           (guint64)*((const guint8 *)(p)+3)<<24|
           (guint64)*((const guint8 *)(p)+2)<<16|
           (guint64)*((const guint8 *)(p)+1)<<8|
           (guint64)*((const guint8 *)(p)+0)<<0;
}

static inline guint64 pletoh64(const void *p)
{
    return (guint64)*((const guint8 *)(p)+7)<<56|
           (guint64)*((const guint8 *)(p)+6)<<48|
           (guint64)*((const guint8 *)(p)+5)<<40|
           (guint64)*((const guint8 *)(p)+4)<<32|
           (guint64)*((const guint8 *)(p)+3)<<24|
           (guint64)*((const guint8 *)(p)+2)<<16|
           (guint64)*((const guint8 *)(p)+1)<<8|
           (guint64)*((const guint8 *)(p)+0)<<0;
}
/* Pointer routines to put items out in a particular byte order.
 * These will work regardless of the byte alignment of the pointer.
 */

static inline void phton16(guint8 *p, guint16 v)
{
    p[0] = (guint8)(v >> 8);
    p[1] = (guint8)(v >> 0);
}

static inline void phton32(guint8 *p, guint32 v)
{
    p[0] = (guint8)(v >> 24);
    p[1] = (guint8)(v >> 16);
    p[2] = (guint8)(v >> 8);
    p[3] = (guint8)(v >> 0);
}

static inline void phton64(guint8 *p, guint64 v) {
    p[0] = (guint8)(v >> 56);
    p[1] = (guint8)(v >> 48);
    p[2] = (guint8)(v >> 40);
    p[3] = (guint8)(v >> 32);
    p[4] = (guint8)(v >> 24);
    p[5] = (guint8)(v >> 16);
    p[6] = (guint8)(v >> 8);
    p[7] = (guint8)(v >> 0);
}

static inline void phtole32(guint8 *p, guint32 v) {
    p[0] = (guint8)(v >> 0);
    p[1] = (guint8)(v >> 8);
    p[2] = (guint8)(v >> 16);
    p[3] = (guint8)(v >> 24);
}

static inline void phtole64(guint8 *p, guint64 v) {
    p[0] = (guint8)(v >> 0);
    p[1] = (guint8)(v >> 8);
    p[2] = (guint8)(v >> 16);
    p[3] = (guint8)(v >> 24);
    p[4] = (guint8)(v >> 32);
    p[5] = (guint8)(v >> 40);
    p[6] = (guint8)(v >> 48);
    p[7] = (guint8)(v >> 56);
}

/* Subtract two guint32s with respect to wraparound */
#define guint32_wraparound_diff(higher, lower) ((higher>lower)?(higher-lower):(higher+0xffffffff-lower+1))

#endif /* PINT_H */

/*
 * Editor modelines  -  https://www.wireshark.org/tools/modelines.html
 *
 * Local Variables:
 * c-basic-offset: 4
 * tab-width: 8
 * indent-tabs-mode: nil
 * End:
 *
 * ex: set shiftwidth=4 tabstop=8 expandtab:
 * :indentSize=4:tabSize=8:noTabs=true:
 */