75 lines
1.9 KiB
C
75 lines
1.9 KiB
C
#pragma once
|
|
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <dlfcn.h>
|
|
|
|
#include "log.h"
|
|
|
|
// Check Memory Allocation
|
|
#define ALLOC_CHECK(obj) \
|
|
{ \
|
|
if (obj == NULL) { \
|
|
ERR("Memory Allocation Failed"); \
|
|
} \
|
|
}
|
|
|
|
// Hook Library Function
|
|
#define HOOK(name, return_type, args) \
|
|
typedef return_type (*name##_t)args; \
|
|
static name##_t real_##name = NULL; \
|
|
\
|
|
__attribute__((__unused__)) static void ensure_##name() { \
|
|
if (!real_##name) { \
|
|
dlerror(); \
|
|
real_##name = (name##_t) dlsym(RTLD_NEXT, #name); \
|
|
if (!real_##name) { \
|
|
ERR("Error Resolving Symbol: " #name ": %s", dlerror()); \
|
|
} \
|
|
} \
|
|
} \
|
|
\
|
|
__attribute__((__used__)) return_type name args
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Safe Version Of pipe()
|
|
void safe_pipe2(int pipefd[2], int flags);
|
|
// Check If Two Percentages Are Different Enough To Be Logged
|
|
int is_progress_difference_significant(int32_t new_val, int32_t old_val);
|
|
|
|
// Lock File
|
|
int lock_file(const char *file);
|
|
void unlock_file(const char *file, int fd);
|
|
|
|
// Access Configuration At Runtime
|
|
const char *reborn_get_version();
|
|
int reborn_is_headless();
|
|
int reborn_is_server();
|
|
|
|
// Customize VTable
|
|
#define CUSTOM_VTABLE(name, parent) \
|
|
static void _setup_##name##_vtable(parent##_vtable *vtable); \
|
|
static parent##_vtable *get_##name##_vtable() { \
|
|
static parent##_vtable *vtable = NULL; \
|
|
/* Allocate VTable */ \
|
|
if (vtable == NULL) { \
|
|
/* Init */ \
|
|
vtable = dup_##parent##_vtable(parent##_vtable_base); \
|
|
ALLOC_CHECK(vtable); \
|
|
/* Setup */ \
|
|
_setup_##name##_vtable(vtable); \
|
|
} \
|
|
/* Return */ \
|
|
return vtable; \
|
|
} \
|
|
/* User-Defined Setup Code */ \
|
|
static void _setup_##name##_vtable(parent##_vtable *vtable)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|