/usr/include/libprelude/prelude-extract.h is in libprelude-dev 4.1.0-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*****
*
* Copyright (C) 2002-2017 CS-SI. All Rights Reserved.
* Author: Yoann Vandoorselaere <yoann.v@prelude-ids.com>
*
* This file is part of the Prelude library.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*****/
#ifndef _LIBPRELUDE_EXTRACT_H
#define _LIBPRELUDE_EXTRACT_H
#include "prelude-config.h"
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#ifndef WIN32
# include <netinet/in.h>
#else
# include <winsock2.h>
#endif
#include "prelude-inttypes.h"
#ifdef PRELUDE_ALIGNED_ACCESS
#include <string.h> /* for memmove */
#ifdef __cplusplus
extern "C" {
#endif
/*
* Using memmove make the generated code substencially slower,
* we seen difference from 20MB/s to 200MB/s from the memmove version
* to this version in doing checksum test.
*/
#ifdef PRELUDE_WORDS_BIGENDIAN
# define byte(type, buf, pos) (type) ((const uint8_t *) (buf))[(pos)]
#else
# define byte(type, buf, pos) (type) ((const uint8_t *) (buf))[sizeof(type) - 1 - (pos)]
#endif
static inline uint16_t prelude_align_uint16(const void *buf)
{
return byte(uint16_t, buf, 0) << 8 | byte(uint16_t, buf, 1);
}
static inline int32_t prelude_align_int32(const void *buf)
{
return byte(int32_t, buf, 0) << 24 | byte(int32_t, buf, 1) << 16 |
byte(int32_t, buf, 2) << 8 | byte(int32_t, buf, 3);
}
static inline uint32_t prelude_align_uint32(const void *buf)
{
return byte(uint32_t, buf, 0) << 24 | byte(uint32_t, buf, 1) << 16 |
byte(uint32_t, buf, 2) << 8 | byte(uint32_t, buf, 3);
}
static inline uint64_t prelude_align_uint64(const void *buf)
{
return byte(uint64_t, buf, 0) << 56 | byte(uint64_t, buf, 1) << 48 | byte(uint64_t, buf, 2) << 40 |
byte(uint64_t, buf, 3) << 32 | byte(uint64_t, buf, 4) << 24 | byte(uint64_t, buf, 5) << 16 |
byte(uint64_t, buf, 6) << 8 | byte(uint64_t, buf, 7);
}
static inline float prelude_align_float(const void *buf)
{
return prelude_align_uint32(buf);
}
#else
#define prelude_align_uint16(x) (*(const uint16_t *) (x))
#define prelude_align_int32(x) (*(const int32_t *) (x))
#define prelude_align_uint32(x) (*(const uint32_t *) (x))
#define prelude_align_uint64(x) (*(const uint64_t *) (x))
#define prelude_align_float(x) (*(const float *) (x))
#endif
#include "prelude-string.h"
#include "idmef-time.h"
#include "idmef-data.h"
static inline uint16_t prelude_extract_uint16(const void *buf)
{
return ntohs(prelude_align_uint16(buf));
}
static inline int32_t prelude_extract_int32(const void *buf)
{
return ntohl(prelude_align_int32(buf));
}
static inline uint32_t prelude_extract_uint32(const void *buf)
{
return ntohl(prelude_align_uint32(buf));
}
static inline float prelude_extract_float(const void *buf)
{
union {
float fval;
uint32_t ival;
} val;
val.ival = ntohl(prelude_align_uint32(buf));
return val.fval;
}
static inline uint64_t prelude_extract_uint64(const void *buf)
{
#ifdef PRELUDE_WORDS_BIGENDIAN
return prelude_align_uint64(buf);
#else
union {
uint64_t val64;
uint32_t val32[2];
} combo_r, combo_w;
combo_r.val64 = prelude_align_uint64(buf);
combo_w.val32[0] = ntohl(combo_r.val32[1]);
combo_w.val32[1] = ntohl(combo_r.val32[0]);
return combo_w.val64;
#endif
}
/*
* Theses function check the buffer size for safety.
*/
static inline int prelude_extract_uint8_safe(uint8_t *out, const void *buf, size_t len)
{
if ( len != sizeof(uint8_t) )
return prelude_error_make(PRELUDE_ERROR_SOURCE_EXTRACT, PRELUDE_ERROR_INVAL_INT8);
*out = *(const uint8_t *) buf;
return 0;
}
static inline int prelude_extract_uint16_safe(uint16_t *out, const void *buf, size_t len)
{
if ( len != sizeof(uint16_t) )
return prelude_error_make(PRELUDE_ERROR_SOURCE_EXTRACT, PRELUDE_ERROR_INVAL_INT16);
*out = prelude_extract_uint16(buf);
return 0;
}
static inline int prelude_extract_uint32_safe(uint32_t *out, const void *buf, size_t len)
{
if ( len != sizeof(uint32_t) )
return prelude_error_make(PRELUDE_ERROR_SOURCE_EXTRACT, PRELUDE_ERROR_INVAL_INT32);
*out = prelude_extract_uint32(buf);
return 0;
}
static inline int prelude_extract_int32_safe(int32_t *out, const void *buf, size_t len)
{
if ( len != sizeof(int32_t) )
return prelude_error_make(PRELUDE_ERROR_SOURCE_EXTRACT, PRELUDE_ERROR_INVAL_INT32);
*out = prelude_extract_int32(buf);
return 0;
}
static inline int prelude_extract_uint64_safe(uint64_t *out, const void *buf, size_t len)
{
if ( len != sizeof(uint64_t) )
return prelude_error_make(PRELUDE_ERROR_SOURCE_EXTRACT, PRELUDE_ERROR_INVAL_INT64);
*out = prelude_extract_uint64(buf);
return 0;
}
static inline int prelude_extract_float_safe(float *out, const void *buf, size_t len)
{
if ( len != sizeof(uint32_t) ) /* We pack float as an uint32_t */
return prelude_error_make(PRELUDE_ERROR_SOURCE_EXTRACT, PRELUDE_ERROR_INVAL_FLOAT);
*out = prelude_extract_float(buf);
return 0;
}
static inline int prelude_extract_characters_safe(const char **out, char *buf, size_t len)
{
if ( len < 2 || buf[len - 1] != '\0' )
return prelude_error_make(PRELUDE_ERROR_SOURCE_EXTRACT, PRELUDE_ERROR_INVAL_CHAR);
*out = buf;
return 0;
}
#ifdef __cplusplus
}
#endif
#endif /* _LIBPRELUDE_EXTRACT_H */
|