2017-02-01 15:14:06 +00:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public
|
|
|
|
* License v2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 021110-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __BTRFS_MESSAGES_H__
|
|
|
|
#define __BTRFS_MESSAGES_H__
|
|
|
|
|
2022-09-15 11:59:39 +00:00
|
|
|
#include "kerncompat.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2017-09-23 18:44:02 +00:00
|
|
|
#ifdef DEBUG_VERBOSE_ERROR
|
2017-02-01 15:14:06 +00:00
|
|
|
#define PRINT_VERBOSE_ERROR fprintf(stderr, "%s:%d:", __FILE__, __LINE__)
|
|
|
|
#else
|
|
|
|
#define PRINT_VERBOSE_ERROR
|
|
|
|
#endif
|
|
|
|
|
2017-09-23 18:44:02 +00:00
|
|
|
#ifdef DEBUG_TRACE_ON_ERROR
|
2017-02-01 15:14:06 +00:00
|
|
|
#define PRINT_TRACE_ON_ERROR print_trace()
|
|
|
|
#else
|
2018-12-05 06:40:09 +00:00
|
|
|
#define PRINT_TRACE_ON_ERROR do { } while (0)
|
2017-02-01 15:14:06 +00:00
|
|
|
#endif
|
|
|
|
|
2017-09-23 18:44:02 +00:00
|
|
|
#ifdef DEBUG_ABORT_ON_ERROR
|
2017-02-01 15:14:06 +00:00
|
|
|
#define DO_ABORT_ON_ERROR abort()
|
|
|
|
#else
|
2018-12-05 06:40:09 +00:00
|
|
|
#define DO_ABORT_ON_ERROR do { } while (0)
|
2017-02-01 15:14:06 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define error(fmt, ...) \
|
|
|
|
do { \
|
|
|
|
PRINT_TRACE_ON_ERROR; \
|
|
|
|
PRINT_VERBOSE_ERROR; \
|
2017-03-27 12:14:20 +00:00
|
|
|
__btrfs_error((fmt), ##__VA_ARGS__); \
|
2017-02-01 15:14:06 +00:00
|
|
|
DO_ABORT_ON_ERROR; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define error_on(cond, fmt, ...) \
|
|
|
|
do { \
|
|
|
|
if ((cond)) \
|
|
|
|
PRINT_TRACE_ON_ERROR; \
|
|
|
|
if ((cond)) \
|
|
|
|
PRINT_VERBOSE_ERROR; \
|
2017-03-27 12:14:20 +00:00
|
|
|
__btrfs_error_on((cond), (fmt), ##__VA_ARGS__); \
|
2017-02-01 15:14:06 +00:00
|
|
|
if ((cond)) \
|
|
|
|
DO_ABORT_ON_ERROR; \
|
|
|
|
} while (0)
|
|
|
|
|
2018-01-20 00:49:29 +00:00
|
|
|
#define error_btrfs_util(err) \
|
|
|
|
do { \
|
|
|
|
const char *errno_str = strerror(errno); \
|
|
|
|
const char *lib_str = btrfs_util_strerror(err); \
|
|
|
|
PRINT_TRACE_ON_ERROR; \
|
|
|
|
PRINT_VERBOSE_ERROR; \
|
|
|
|
if (lib_str && strcmp(errno_str, lib_str) != 0) \
|
2018-09-13 00:52:16 +00:00
|
|
|
__btrfs_error("%s: %m", lib_str); \
|
2018-01-20 00:49:29 +00:00
|
|
|
else \
|
2018-09-13 00:52:16 +00:00
|
|
|
__btrfs_error("%m"); \
|
2018-01-20 00:49:29 +00:00
|
|
|
DO_ABORT_ON_ERROR; \
|
|
|
|
} while (0)
|
|
|
|
|
2017-02-01 15:14:06 +00:00
|
|
|
#define warning(fmt, ...) \
|
|
|
|
do { \
|
|
|
|
PRINT_TRACE_ON_ERROR; \
|
|
|
|
PRINT_VERBOSE_ERROR; \
|
2017-03-27 12:14:20 +00:00
|
|
|
__btrfs_warning((fmt), ##__VA_ARGS__); \
|
2017-02-01 15:14:06 +00:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define warning_on(cond, fmt, ...) \
|
|
|
|
do { \
|
|
|
|
if ((cond)) \
|
|
|
|
PRINT_TRACE_ON_ERROR; \
|
|
|
|
if ((cond)) \
|
|
|
|
PRINT_VERBOSE_ERROR; \
|
2017-03-27 12:14:20 +00:00
|
|
|
__btrfs_warning_on((cond), (fmt), ##__VA_ARGS__); \
|
2017-02-01 15:14:06 +00:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
__attribute__ ((format (printf, 1, 2)))
|
2017-03-27 12:14:20 +00:00
|
|
|
void __btrfs_warning(const char *fmt, ...);
|
2017-02-01 15:14:06 +00:00
|
|
|
|
|
|
|
__attribute__ ((format (printf, 1, 2)))
|
2017-03-27 12:14:20 +00:00
|
|
|
void __btrfs_error(const char *fmt, ...);
|
2017-02-01 15:14:06 +00:00
|
|
|
|
|
|
|
__attribute__ ((format (printf, 2, 3)))
|
2017-03-27 12:14:20 +00:00
|
|
|
int __btrfs_warning_on(int condition, const char *fmt, ...);
|
2017-02-01 15:14:06 +00:00
|
|
|
|
|
|
|
__attribute__ ((format (printf, 2, 3)))
|
2017-03-27 12:14:20 +00:00
|
|
|
int __btrfs_error_on(int condition, const char *fmt, ...);
|
2017-02-01 15:14:06 +00:00
|
|
|
|
2022-09-27 22:52:00 +00:00
|
|
|
__attribute__ ((format (printf, 1, 2)))
|
|
|
|
void internal_error(const char *fmt, ...);
|
|
|
|
|
2020-06-12 16:04:31 +00:00
|
|
|
/*
|
|
|
|
* Level of messages that must be printed by default (in case the verbosity
|
|
|
|
* options haven't been set by the user) due to backward compatibility reasons
|
|
|
|
* where applications may expect the output.
|
|
|
|
*/
|
2022-09-29 15:33:29 +00:00
|
|
|
#define LOG_ALWAYS (-1)
|
|
|
|
/*
|
|
|
|
* Default level for any messages that should be printed by default, a one line
|
|
|
|
* summary or with more details. Applications should not rely on such messages.
|
|
|
|
*/
|
|
|
|
#define LOG_DEFAULT (1)
|
|
|
|
/*
|
|
|
|
* Information about the ongoing actions, high level description
|
|
|
|
*/
|
|
|
|
#define LOG_INFO (2)
|
|
|
|
/*
|
|
|
|
* Verbose description and individual steps of the previous level
|
|
|
|
*/
|
|
|
|
#define LOG_VERBOSE (3)
|
|
|
|
/*
|
|
|
|
* Anything that should not be normally printed but can be useful for debugging
|
|
|
|
*/
|
|
|
|
#define LOG_DEBUG (4)
|
2020-06-12 16:04:31 +00:00
|
|
|
|
2019-11-25 10:39:03 +00:00
|
|
|
__attribute__ ((format (printf, 2, 3)))
|
|
|
|
void pr_verbose(int level, const char *fmt, ...);
|
|
|
|
|
2022-09-30 06:52:14 +00:00
|
|
|
/*
|
|
|
|
* Commonly used errors
|
|
|
|
*/
|
|
|
|
enum common_error {
|
|
|
|
ERROR_MSG_MEMORY,
|
|
|
|
};
|
|
|
|
|
|
|
|
__attribute__ ((format (printf, 2, 3)))
|
|
|
|
void error_msg(enum common_error error, const char *msg, ...);
|
|
|
|
|
2017-02-01 15:14:06 +00:00
|
|
|
#endif
|