Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
common.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __COMMON_H__
7#define __COMMON_H__
8
9#include <stddef.h>
10#include <stdint.h>
11
19#define CRINIT_PARAM_UNUSED(par) \
20 do { \
21 (void)(par); \
22 } while (0)
23
36#define crinitParamCheck(inputParam, cmpShort, cmpLong) \
37 ((strncmp(inputParam, cmpShort, sizeof(cmpShort)) == 0) || (strncmp(inputParam, cmpLong, sizeof(cmpLong)) == 0))
38
46#define crinitIsAbsPath(path) (((path) != NULL) && ((path)[0] == '/'))
47
51#define crinitNumElements(p) (sizeof(p) / sizeof(*(p)))
52
66#define crinitNullCheck(errcode, ...) \
67 do { \
68 _Pragma("GCC diagnostic push"); \
69 _Pragma("GCC diagnostic error \"-Wshadow\""); \
70 const void *_macroPtrsToCheck[] = {__VA_ARGS__}; \
71 for (size_t _macroI = 0; _macroI < crinitNumElements(_macroPtrsToCheck); _macroI++) { \
72 if (_macroPtrsToCheck[_macroI] == NULL) { \
73 crinitErrPrint("Input parameters must not be NULL."); \
74 return (errcode); \
75 } \
76 } \
77 _Pragma("GCC diagnostic pop"); \
78 } while (0)
79
86// clang-format off
87// Rationale: Used version of clang-format does not format _Generic macros correctly. This is a known bug and has been
88// fixed very recently. We may remove this exemption once we are on the new clang version as standard.
89// See: https://github.com/llvm/llvm-project/issues/18080
90#define crinitStrtoGenericInteger(resType, str, endptr, base) \
91 _Generic((resType), \
92 int : strtol, \
93 long : strtol, \
94 long long : strtoll, \
95 unsigned int : strtoul, \
96 unsigned long : strtoul, \
97 unsigned long long : strtoull) \
98 ((str), (endptr), (base))
99// clang-format on
100
106#define crinitNullify(ptr) \
107 do { \
108 free(ptr); \
109 (ptr) = NULL; \
110 } while (0)
111
123int crinitBinReadAll(uint8_t *buf, size_t n, const char *path);
124
125#endif /* __COMMON_H__ */
int crinitBinReadAll(uint8_t *buf, size_t n, const char *path)
Definition common.c:14