mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-07 02:18:35 +00:00
Replace loose libmaxminddb files with submodule.
This commit is contained in:
parent
179e2a5471
commit
9281fc99ac
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -4,3 +4,6 @@
|
|||||||
[submodule "sourcepawn"]
|
[submodule "sourcepawn"]
|
||||||
path = sourcepawn
|
path = sourcepawn
|
||||||
url = https://github.com/alliedmodders/sourcepawn
|
url = https://github.com/alliedmodders/sourcepawn
|
||||||
|
[submodule "extensions/geoip/libmaxminddb"]
|
||||||
|
path = extensions/geoip/libmaxminddb
|
||||||
|
url = https://github.com/maxmind/libmaxminddb.git
|
||||||
|
|||||||
1
extensions/geoip/libmaxminddb
Submodule
1
extensions/geoip/libmaxminddb
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 9660f7e14492c31c52b4579ce88136aae4526f23
|
||||||
@ -1,241 +0,0 @@
|
|||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef MAXMINDDB_H
|
|
||||||
#define MAXMINDDB_H
|
|
||||||
|
|
||||||
/* Request POSIX.1-2008. However, we want to remain compatible with
|
|
||||||
* POSIX.1-2001 (since we have been historically and see no reason to drop
|
|
||||||
* compatibility). By requesting POSIX.1-2008, we can conditionally use
|
|
||||||
* features provided by that standard if the implementation provides it. We can
|
|
||||||
* check for what the implementation provides by checking the _POSIX_VERSION
|
|
||||||
* macro after including unistd.h. If a feature is in POSIX.1-2008 but not
|
|
||||||
* POSIX.1-2001, check that macro before using the feature (or check for the
|
|
||||||
* feature directly if possible). */
|
|
||||||
#ifndef _POSIX_C_SOURCE
|
|
||||||
#define _POSIX_C_SOURCE 200809L
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "maxminddb_config.h"
|
|
||||||
#include <stdarg.h>
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <sys/types.h>
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
|
||||||
#include <winsock2.h>
|
|
||||||
#include <ws2tcpip.h>
|
|
||||||
/* libmaxminddb package version from configure */
|
|
||||||
#define PACKAGE_VERSION "1.3.2"
|
|
||||||
|
|
||||||
typedef ADDRESS_FAMILY sa_family_t;
|
|
||||||
|
|
||||||
#if defined(_MSC_VER)
|
|
||||||
/* MSVC doesn't define signed size_t, copy it from configure */
|
|
||||||
#define ssize_t SSIZE_T
|
|
||||||
|
|
||||||
/* MSVC doesn't support restricted pointers */
|
|
||||||
#define restrict
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#include <netdb.h>
|
|
||||||
#include <netinet/in.h>
|
|
||||||
#include <sys/socket.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define MMDB_DATA_TYPE_EXTENDED (0)
|
|
||||||
#define MMDB_DATA_TYPE_POINTER (1)
|
|
||||||
#define MMDB_DATA_TYPE_UTF8_STRING (2)
|
|
||||||
#define MMDB_DATA_TYPE_DOUBLE (3)
|
|
||||||
#define MMDB_DATA_TYPE_BYTES (4)
|
|
||||||
#define MMDB_DATA_TYPE_UINT16 (5)
|
|
||||||
#define MMDB_DATA_TYPE_UINT32 (6)
|
|
||||||
#define MMDB_DATA_TYPE_MAP (7)
|
|
||||||
#define MMDB_DATA_TYPE_INT32 (8)
|
|
||||||
#define MMDB_DATA_TYPE_UINT64 (9)
|
|
||||||
#define MMDB_DATA_TYPE_UINT128 (10)
|
|
||||||
#define MMDB_DATA_TYPE_ARRAY (11)
|
|
||||||
#define MMDB_DATA_TYPE_CONTAINER (12)
|
|
||||||
#define MMDB_DATA_TYPE_END_MARKER (13)
|
|
||||||
#define MMDB_DATA_TYPE_BOOLEAN (14)
|
|
||||||
#define MMDB_DATA_TYPE_FLOAT (15)
|
|
||||||
|
|
||||||
#define MMDB_RECORD_TYPE_SEARCH_NODE (0)
|
|
||||||
#define MMDB_RECORD_TYPE_EMPTY (1)
|
|
||||||
#define MMDB_RECORD_TYPE_DATA (2)
|
|
||||||
#define MMDB_RECORD_TYPE_INVALID (3)
|
|
||||||
|
|
||||||
/* flags for open */
|
|
||||||
#define MMDB_MODE_MMAP (1)
|
|
||||||
#define MMDB_MODE_MASK (7)
|
|
||||||
|
|
||||||
/* error codes */
|
|
||||||
#define MMDB_SUCCESS (0)
|
|
||||||
#define MMDB_FILE_OPEN_ERROR (1)
|
|
||||||
#define MMDB_CORRUPT_SEARCH_TREE_ERROR (2)
|
|
||||||
#define MMDB_INVALID_METADATA_ERROR (3)
|
|
||||||
#define MMDB_IO_ERROR (4)
|
|
||||||
#define MMDB_OUT_OF_MEMORY_ERROR (5)
|
|
||||||
#define MMDB_UNKNOWN_DATABASE_FORMAT_ERROR (6)
|
|
||||||
#define MMDB_INVALID_DATA_ERROR (7)
|
|
||||||
#define MMDB_INVALID_LOOKUP_PATH_ERROR (8)
|
|
||||||
#define MMDB_LOOKUP_PATH_DOES_NOT_MATCH_DATA_ERROR (9)
|
|
||||||
#define MMDB_INVALID_NODE_NUMBER_ERROR (10)
|
|
||||||
#define MMDB_IPV6_LOOKUP_IN_IPV4_DATABASE_ERROR (11)
|
|
||||||
|
|
||||||
#if !(MMDB_UINT128_IS_BYTE_ARRAY)
|
|
||||||
#if MMDB_UINT128_USING_MODE
|
|
||||||
typedef unsigned int mmdb_uint128_t __attribute__ ((__mode__(TI)));
|
|
||||||
#else
|
|
||||||
typedef unsigned __int128 mmdb_uint128_t;
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* This is a pointer into the data section for a given IP address lookup */
|
|
||||||
typedef struct MMDB_entry_s {
|
|
||||||
struct MMDB_s *mmdb;
|
|
||||||
uint32_t offset;
|
|
||||||
} MMDB_entry_s;
|
|
||||||
|
|
||||||
typedef struct MMDB_lookup_result_s {
|
|
||||||
bool found_entry;
|
|
||||||
MMDB_entry_s entry;
|
|
||||||
uint16_t netmask;
|
|
||||||
} MMDB_lookup_result_s;
|
|
||||||
|
|
||||||
typedef struct MMDB_entry_data_s {
|
|
||||||
bool has_data;
|
|
||||||
union {
|
|
||||||
uint32_t pointer;
|
|
||||||
const char *utf8_string;
|
|
||||||
double double_value;
|
|
||||||
const uint8_t *bytes;
|
|
||||||
uint16_t uint16;
|
|
||||||
uint32_t uint32;
|
|
||||||
int32_t int32;
|
|
||||||
uint64_t uint64;
|
|
||||||
#if MMDB_UINT128_IS_BYTE_ARRAY
|
|
||||||
uint8_t uint128[16];
|
|
||||||
#else
|
|
||||||
mmdb_uint128_t uint128;
|
|
||||||
#endif
|
|
||||||
bool boolean;
|
|
||||||
float float_value;
|
|
||||||
};
|
|
||||||
/* This is a 0 if a given entry cannot be found. This can only happen
|
|
||||||
* when a call to MMDB_(v)get_value() asks for hash keys or array
|
|
||||||
* indices that don't exist. */
|
|
||||||
uint32_t offset;
|
|
||||||
/* This is the next entry in the data section, but it's really only
|
|
||||||
* relevant for entries that part of a larger map or array
|
|
||||||
* struct. There's no good reason for an end user to look at this
|
|
||||||
* directly. */
|
|
||||||
uint32_t offset_to_next;
|
|
||||||
/* This is only valid for strings, utf8_strings or binary data */
|
|
||||||
uint32_t data_size;
|
|
||||||
/* This is an MMDB_DATA_TYPE_* constant */
|
|
||||||
uint32_t type;
|
|
||||||
} MMDB_entry_data_s;
|
|
||||||
|
|
||||||
/* This is the return type when someone asks for all the entry data in a map or array */
|
|
||||||
typedef struct MMDB_entry_data_list_s {
|
|
||||||
MMDB_entry_data_s entry_data;
|
|
||||||
struct MMDB_entry_data_list_s *next;
|
|
||||||
void *pool;
|
|
||||||
} MMDB_entry_data_list_s;
|
|
||||||
|
|
||||||
typedef struct MMDB_description_s {
|
|
||||||
const char *language;
|
|
||||||
const char *description;
|
|
||||||
} MMDB_description_s;
|
|
||||||
|
|
||||||
typedef struct MMDB_metadata_s {
|
|
||||||
uint32_t node_count;
|
|
||||||
uint16_t record_size;
|
|
||||||
uint16_t ip_version;
|
|
||||||
const char *database_type;
|
|
||||||
struct {
|
|
||||||
size_t count;
|
|
||||||
const char **names;
|
|
||||||
} languages;
|
|
||||||
uint16_t binary_format_major_version;
|
|
||||||
uint16_t binary_format_minor_version;
|
|
||||||
uint64_t build_epoch;
|
|
||||||
struct {
|
|
||||||
size_t count;
|
|
||||||
MMDB_description_s **descriptions;
|
|
||||||
} description;
|
|
||||||
} MMDB_metadata_s;
|
|
||||||
|
|
||||||
typedef struct MMDB_ipv4_start_node_s {
|
|
||||||
uint16_t netmask;
|
|
||||||
uint32_t node_value;
|
|
||||||
} MMDB_ipv4_start_node_s;
|
|
||||||
|
|
||||||
typedef struct MMDB_s {
|
|
||||||
uint32_t flags;
|
|
||||||
const char *filename;
|
|
||||||
ssize_t file_size;
|
|
||||||
const uint8_t *file_content;
|
|
||||||
const uint8_t *data_section;
|
|
||||||
uint32_t data_section_size;
|
|
||||||
const uint8_t *metadata_section;
|
|
||||||
uint32_t metadata_section_size;
|
|
||||||
uint16_t full_record_byte_size;
|
|
||||||
uint16_t depth;
|
|
||||||
MMDB_ipv4_start_node_s ipv4_start_node;
|
|
||||||
MMDB_metadata_s metadata;
|
|
||||||
} MMDB_s;
|
|
||||||
|
|
||||||
typedef struct MMDB_search_node_s {
|
|
||||||
uint64_t left_record;
|
|
||||||
uint64_t right_record;
|
|
||||||
uint8_t left_record_type;
|
|
||||||
uint8_t right_record_type;
|
|
||||||
MMDB_entry_s left_record_entry;
|
|
||||||
MMDB_entry_s right_record_entry;
|
|
||||||
} MMDB_search_node_s;
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
|
||||||
/* --prototypes automatically generated by dev-bin/regen-prototypes.pl - don't remove this comment */
|
|
||||||
extern int MMDB_open(const char *const filename, uint32_t flags, MMDB_s *const mmdb);
|
|
||||||
extern MMDB_lookup_result_s MMDB_lookup_string(MMDB_s *const mmdb,
|
|
||||||
const char *const ipstr,
|
|
||||||
int *const gai_error,
|
|
||||||
int *const mmdb_error);
|
|
||||||
extern MMDB_lookup_result_s MMDB_lookup_sockaddr(
|
|
||||||
MMDB_s *const mmdb,
|
|
||||||
const struct sockaddr *const sockaddr,
|
|
||||||
int *const mmdb_error);
|
|
||||||
extern int MMDB_read_node(MMDB_s *const mmdb, uint32_t node_number,
|
|
||||||
MMDB_search_node_s *const node);
|
|
||||||
extern int MMDB_get_value(MMDB_entry_s *const start,
|
|
||||||
MMDB_entry_data_s *const entry_data,
|
|
||||||
...);
|
|
||||||
extern int MMDB_vget_value(MMDB_entry_s *const start,
|
|
||||||
MMDB_entry_data_s *const entry_data,
|
|
||||||
va_list va_path);
|
|
||||||
extern int MMDB_aget_value(MMDB_entry_s *const start,
|
|
||||||
MMDB_entry_data_s *const entry_data,
|
|
||||||
const char *const *const path);
|
|
||||||
extern int MMDB_get_metadata_as_entry_data_list(
|
|
||||||
MMDB_s *const mmdb, MMDB_entry_data_list_s **const entry_data_list);
|
|
||||||
extern int MMDB_get_entry_data_list(
|
|
||||||
MMDB_entry_s *start, MMDB_entry_data_list_s **const entry_data_list);
|
|
||||||
extern void MMDB_free_entry_data_list(MMDB_entry_data_list_s *const entry_data_list);
|
|
||||||
extern void MMDB_close(MMDB_s *const mmdb);
|
|
||||||
extern const char *MMDB_lib_version(void);
|
|
||||||
extern int MMDB_dump_entry_data_list(FILE *const stream,
|
|
||||||
MMDB_entry_data_list_s *const entry_data_list,
|
|
||||||
int indent);
|
|
||||||
extern const char *MMDB_strerror(int error_code);
|
|
||||||
/* --prototypes end - don't remove this comment-- */
|
|
||||||
/* *INDENT-ON* */
|
|
||||||
|
|
||||||
#endif /* MAXMINDDB_H */
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
#ifndef MAXMINDDB_CONFIG_H
|
|
||||||
#define MAXMINDDB_CONFIG_H
|
|
||||||
|
|
||||||
#ifndef MMDB_UINT128_USING_MODE
|
|
||||||
/* Define as 1 if we we use unsigned int __atribute__ ((__mode__(TI))) for uint128 values */
|
|
||||||
#define MMDB_UINT128_USING_MODE 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef MMDB_UINT128_IS_BYTE_ARRAY
|
|
||||||
/* Define as 1 if we don't have an unsigned __int128 type */
|
|
||||||
#define MMDB_UINT128_IS_BYTE_ARRAY 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* MAXMINDDB_CONFIG_H */
|
|
||||||
@ -1,180 +0,0 @@
|
|||||||
#include "data-pool.h"
|
|
||||||
#include "maxminddb.h"
|
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <stddef.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
|
|
||||||
static bool can_multiply(size_t const, size_t const, size_t const);
|
|
||||||
|
|
||||||
// Allocate an MMDB_data_pool_s. It initially has space for size
|
|
||||||
// MMDB_entry_data_list_s structs.
|
|
||||||
MMDB_data_pool_s *data_pool_new(size_t const size)
|
|
||||||
{
|
|
||||||
MMDB_data_pool_s *const pool = calloc(1, sizeof(MMDB_data_pool_s));
|
|
||||||
if (!pool) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (size == 0 ||
|
|
||||||
!can_multiply(SIZE_MAX, size, sizeof(MMDB_entry_data_list_s))) {
|
|
||||||
data_pool_destroy(pool);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
pool->size = size;
|
|
||||||
pool->blocks[0] = calloc(pool->size, sizeof(MMDB_entry_data_list_s));
|
|
||||||
if (!pool->blocks[0]) {
|
|
||||||
data_pool_destroy(pool);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
pool->blocks[0]->pool = pool;
|
|
||||||
|
|
||||||
pool->sizes[0] = size;
|
|
||||||
|
|
||||||
pool->block = pool->blocks[0];
|
|
||||||
|
|
||||||
return pool;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Determine if we can multiply m*n. We can do this if the result will be below
|
|
||||||
// the given max. max will typically be SIZE_MAX.
|
|
||||||
//
|
|
||||||
// We want to know if we'll wrap around.
|
|
||||||
static bool can_multiply(size_t const max, size_t const m, size_t const n)
|
|
||||||
{
|
|
||||||
if (m == 0) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return n <= max / m;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Clean up the data pool.
|
|
||||||
void data_pool_destroy(MMDB_data_pool_s *const pool)
|
|
||||||
{
|
|
||||||
if (!pool) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (size_t i = 0; i <= pool->index; i++) {
|
|
||||||
free(pool->blocks[i]);
|
|
||||||
}
|
|
||||||
|
|
||||||
free(pool);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Claim a new struct from the pool. Doing this may cause the pool's size to
|
|
||||||
// grow.
|
|
||||||
MMDB_entry_data_list_s *data_pool_alloc(MMDB_data_pool_s *const pool)
|
|
||||||
{
|
|
||||||
if (!pool) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (pool->used < pool->size) {
|
|
||||||
MMDB_entry_data_list_s *const element = pool->block + pool->used;
|
|
||||||
pool->used++;
|
|
||||||
return element;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Take it from a new block of memory.
|
|
||||||
|
|
||||||
size_t const new_index = pool->index + 1;
|
|
||||||
if (new_index == DATA_POOL_NUM_BLOCKS) {
|
|
||||||
// See the comment about not growing this on DATA_POOL_NUM_BLOCKS.
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!can_multiply(SIZE_MAX, pool->size, 2)) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
size_t const new_size = pool->size * 2;
|
|
||||||
|
|
||||||
if (!can_multiply(SIZE_MAX, new_size, sizeof(MMDB_entry_data_list_s))) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
pool->blocks[new_index] = calloc(new_size, sizeof(MMDB_entry_data_list_s));
|
|
||||||
if (!pool->blocks[new_index]) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// We don't need to set this, but it's useful for introspection in tests.
|
|
||||||
pool->blocks[new_index]->pool = pool;
|
|
||||||
|
|
||||||
pool->index = new_index;
|
|
||||||
pool->block = pool->blocks[pool->index];
|
|
||||||
|
|
||||||
pool->size = new_size;
|
|
||||||
pool->sizes[pool->index] = pool->size;
|
|
||||||
|
|
||||||
MMDB_entry_data_list_s *const element = pool->block;
|
|
||||||
pool->used = 1;
|
|
||||||
return element;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Turn the structs in the array-like pool into a linked list.
|
|
||||||
//
|
|
||||||
// Before calling this function, the list isn't linked up.
|
|
||||||
MMDB_entry_data_list_s *data_pool_to_list(MMDB_data_pool_s *const pool)
|
|
||||||
{
|
|
||||||
if (!pool) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (pool->index == 0 && pool->used == 0) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (size_t i = 0; i <= pool->index; i++) {
|
|
||||||
MMDB_entry_data_list_s *const block = pool->blocks[i];
|
|
||||||
|
|
||||||
size_t size = pool->sizes[i];
|
|
||||||
if (i == pool->index) {
|
|
||||||
size = pool->used;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (size_t j = 0; j < size - 1; j++) {
|
|
||||||
MMDB_entry_data_list_s *const cur = block + j;
|
|
||||||
cur->next = block + j + 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (i < pool->index) {
|
|
||||||
MMDB_entry_data_list_s *const last = block + size - 1;
|
|
||||||
last->next = pool->blocks[i + 1];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return pool->blocks[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef TEST_DATA_POOL
|
|
||||||
|
|
||||||
#include <libtap/tap.h>
|
|
||||||
#include <maxminddb_test_helper.h>
|
|
||||||
|
|
||||||
static void test_can_multiply(void);
|
|
||||||
|
|
||||||
int main(void)
|
|
||||||
{
|
|
||||||
plan(NO_PLAN);
|
|
||||||
test_can_multiply();
|
|
||||||
done_testing();
|
|
||||||
}
|
|
||||||
|
|
||||||
static void test_can_multiply(void)
|
|
||||||
{
|
|
||||||
{
|
|
||||||
ok(can_multiply(SIZE_MAX, 1, SIZE_MAX), "1*SIZE_MAX is ok");
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
ok(!can_multiply(SIZE_MAX, 2, SIZE_MAX), "2*SIZE_MAX is not ok");
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
ok(can_multiply(SIZE_MAX, 10240, sizeof(MMDB_entry_data_list_s)),
|
|
||||||
"1024 entry_data_list_s's are okay");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
||||||
@ -1,52 +0,0 @@
|
|||||||
#ifndef DATA_POOL_H
|
|
||||||
#define DATA_POOL_H
|
|
||||||
|
|
||||||
#include "maxminddb.h"
|
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <stddef.h>
|
|
||||||
|
|
||||||
// This should be large enough that we never need to grow the array of pointers
|
|
||||||
// to blocks. 32 is enough. Even starting out of with size 1 (1 struct), the
|
|
||||||
// 32nd element alone will provide 2**32 structs as we exponentially increase
|
|
||||||
// the number in each block. Being confident that we do not have to grow the
|
|
||||||
// array lets us avoid writing code to do that. That code would be risky as it
|
|
||||||
// would rarely be hit and likely not be well tested.
|
|
||||||
#define DATA_POOL_NUM_BLOCKS 32
|
|
||||||
|
|
||||||
// A pool of memory for MMDB_entry_data_list_s structs. This is so we can
|
|
||||||
// allocate multiple up front rather than one at a time for performance
|
|
||||||
// reasons.
|
|
||||||
//
|
|
||||||
// The order you add elements to it (by calling data_pool_alloc()) ends up as
|
|
||||||
// the order of the list.
|
|
||||||
//
|
|
||||||
// The memory only grows. There is no support for releasing an element you take
|
|
||||||
// back to the pool.
|
|
||||||
typedef struct MMDB_data_pool_s {
|
|
||||||
// Index of the current block we're allocating out of.
|
|
||||||
size_t index;
|
|
||||||
|
|
||||||
// The size of the current block, counting by structs.
|
|
||||||
size_t size;
|
|
||||||
|
|
||||||
// How many used in the current block, counting by structs.
|
|
||||||
size_t used;
|
|
||||||
|
|
||||||
// The current block we're allocating out of.
|
|
||||||
MMDB_entry_data_list_s *block;
|
|
||||||
|
|
||||||
// The size of each block.
|
|
||||||
size_t sizes[DATA_POOL_NUM_BLOCKS];
|
|
||||||
|
|
||||||
// An array of pointers to blocks of memory holding space for list
|
|
||||||
// elements.
|
|
||||||
MMDB_entry_data_list_s *blocks[DATA_POOL_NUM_BLOCKS];
|
|
||||||
} MMDB_data_pool_s;
|
|
||||||
|
|
||||||
MMDB_data_pool_s *data_pool_new(size_t const);
|
|
||||||
void data_pool_destroy(MMDB_data_pool_s *const);
|
|
||||||
MMDB_entry_data_list_s *data_pool_alloc(MMDB_data_pool_s *const);
|
|
||||||
MMDB_entry_data_list_s *data_pool_to_list(MMDB_data_pool_s *const);
|
|
||||||
|
|
||||||
#endif
|
|
||||||
@ -1,167 +0,0 @@
|
|||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
/* *INDENT-OFF* */
|
|
||||||
|
|
||||||
/* The memmem, strdup, and strndup functions were all copied from the
|
|
||||||
* FreeBSD source, along with the relevant copyright notice.
|
|
||||||
*
|
|
||||||
* It'd be nicer to simply use the functions available on the system if they
|
|
||||||
* exist, but there doesn't seem to be a good way to detect them without also
|
|
||||||
* defining things like _GNU_SOURCE, which we want to avoid, because then we
|
|
||||||
* end up _accidentally_ using GNU features without noticing, which then
|
|
||||||
* breaks on systems like OSX.
|
|
||||||
*
|
|
||||||
* C is fun! */
|
|
||||||
|
|
||||||
/* Applies to memmem implementation */
|
|
||||||
/*-
|
|
||||||
* Copyright (c) 2005 Pascal Gloor <pascal.gloor@spale.com>
|
|
||||||
*
|
|
||||||
* 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. The name of the author may not be used to endorse or promote
|
|
||||||
* products derived from this software without specific prior written
|
|
||||||
* permission.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
|
||||||
*/
|
|
||||||
static void *
|
|
||||||
mmdb_memmem(const void *l, size_t l_len, const void *s, size_t s_len)
|
|
||||||
{
|
|
||||||
register char *cur, *last;
|
|
||||||
const char *cl = (const char *)l;
|
|
||||||
const char *cs = (const char *)s;
|
|
||||||
|
|
||||||
/* we need something to compare */
|
|
||||||
if (l_len == 0 || s_len == 0)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
/* "s" must be smaller or equal to "l" */
|
|
||||||
if (l_len < s_len)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
/* special case where s_len == 1 */
|
|
||||||
if (s_len == 1)
|
|
||||||
return memchr(l, (int)*cs, l_len);
|
|
||||||
|
|
||||||
/* the last position where its possible to find "s" in "l" */
|
|
||||||
last = (char *)cl + l_len - s_len;
|
|
||||||
|
|
||||||
for (cur = (char *)cl; cur <= last; cur++)
|
|
||||||
if (cur[0] == cs[0] && memcmp(cur, cs, s_len) == 0)
|
|
||||||
return cur;
|
|
||||||
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Applies to strnlen implementation */
|
|
||||||
/*-
|
|
||||||
* Copyright (c) 2009 David Schultz <das@FreeBSD.org>
|
|
||||||
* 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.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
|
||||||
*/
|
|
||||||
static size_t
|
|
||||||
mmdb_strnlen(const char *s, size_t maxlen)
|
|
||||||
{
|
|
||||||
size_t len;
|
|
||||||
|
|
||||||
for (len = 0; len < maxlen; len++, s++) {
|
|
||||||
if (!*s)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return (len);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Applies to strdup and strndup implementation */
|
|
||||||
/*
|
|
||||||
* Copyright (c) 1988, 1993
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
static char *
|
|
||||||
mmdb_strdup(const char *str)
|
|
||||||
{
|
|
||||||
size_t len;
|
|
||||||
char *copy;
|
|
||||||
|
|
||||||
len = strlen(str) + 1;
|
|
||||||
if ((copy = malloc(len)) == NULL)
|
|
||||||
return (NULL);
|
|
||||||
memcpy(copy, str, len);
|
|
||||||
return (copy);
|
|
||||||
}
|
|
||||||
|
|
||||||
static char *
|
|
||||||
mmdb_strndup(const char *str, size_t n)
|
|
||||||
{
|
|
||||||
size_t len;
|
|
||||||
char *copy;
|
|
||||||
|
|
||||||
len = mmdb_strnlen(str, n);
|
|
||||||
if ((copy = malloc(len + 1)) == NULL)
|
|
||||||
return (NULL);
|
|
||||||
memcpy(copy, str, len);
|
|
||||||
copy[len] = '\0';
|
|
||||||
return (copy);
|
|
||||||
}
|
|
||||||
/* *INDENT-ON* */
|
|
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user