1 /* SPDX-License-Identifier: LGPL-2.1-or-later */ 2 3 #pragma once 4 5 #include <stdbool.h> 6 #include <stddef.h> 7 #include <libcryptsetup.h> 8 9 /* crypt_dump() internal indentation magic */ 10 #define CRYPT_DUMP_LINE_SEP "\n\t " 11 12 #define crypt_log_debug(cd, ...) crypt_logf(cd, CRYPT_LOG_DEBUG, __VA_ARGS__) 13 #define crypt_log_error(cd, ...) crypt_logf(cd, CRYPT_LOG_ERROR, __VA_ARGS__) 14 #define crypt_log_verbose(cd, ...) crypt_logf(cd, CRYPT_LOG_VERBOSE, __VA_ARGS__) 15 #define crypt_log(cd, ...) crypt_logf(cd, CRYPT_LOG_NORMAL, __VA_ARGS__) 16 17 #define crypt_log_full_errno(cd, e, lvl, ...) ({ \ 18 int _e = abs(e), _s = errno; \ 19 errno = _e; \ 20 crypt_logf(cd, lvl, __VA_ARGS__); \ 21 errno = _s; \ 22 -_e; \ 23 }) 24 25 #define crypt_log_debug_errno(cd, e, ...) \ 26 crypt_log_full_errno(cd, e, CRYPT_LOG_DEBUG, __VA_ARGS__) 27 28 #define crypt_log_error_errno(cd, e, ...) \ 29 crypt_log_full_errno(cd, e, CRYPT_LOG_ERROR, __VA_ARGS__) 30 31 #define crypt_log_oom(cd) crypt_log_error_errno(cd, ENOMEM, "Not enough memory.") 32 33 int crypt_dump_buffer_to_hex_string( 34 const char *buf, 35 size_t buf_size, 36 char **ret_dump_str); 37 38 int crypt_dump_hex_string(const char *hex_str, char **ret_dump_str); 39