kmod/libkmod/libkmod-private.h

72 lines
2.2 KiB
C
Raw Normal View History

2011-11-21 23:35:35 +07:00
#ifndef _LIBKMOD_PRIVATE_H_
#define _LIBKMOD_PRIVATE_H_
#include <stdbool.h>
#include <stdio.h>
2011-11-21 23:35:35 +07:00
#include <syslog.h>
2011-11-23 21:23:46 +07:00
#include "macro.h"
2011-11-21 23:35:35 +07:00
#include "libkmod.h"
static __always_inline __printf_format(2, 3) void
2011-11-21 23:35:35 +07:00
kmod_log_null(struct kmod_ctx *ctx, const char *format, ...) {}
#define kmod_log_cond(ctx, prio, arg...) \
do { \
if (kmod_get_log_priority(ctx) >= prio) \
kmod_log(ctx, prio, __FILE__, __LINE__, __FUNCTION__, ## arg);\
} while (0)
#ifdef ENABLE_LOGGING
# ifdef ENABLE_DEBUG
# define DBG(ctx, arg...) kmod_log_cond(ctx, LOG_DEBUG, ## arg)
2011-11-21 23:35:35 +07:00
# else
# define DBG(ctx, arg...) kmod_log_null(ctx, ## arg)
2011-11-21 23:35:35 +07:00
# endif
# define INFO(ctx, arg...) kmod_log_cond(ctx, LOG_INFO, ## arg)
# define ERR(ctx, arg...) kmod_log_cond(ctx, LOG_ERR, ## arg)
2011-11-21 23:35:35 +07:00
#else
# define DBG(ctx, arg...) kmod_log_null(ctx, ## arg)
# define INFO(ctx, arg...) kmod_log_null(ctx, ## arg)
# define ERR(ctx, arg...) kmod_log_null(ctx, ## arg)
2011-11-21 23:35:35 +07:00
#endif
#define KMOD_EXPORT __attribute__ ((visibility("default")))
void kmod_log(struct kmod_ctx *ctx,
int priority, const char *file, int line, const char *fn,
const char *format, ...) __attribute__((format(printf, 6, 7)));
2011-11-22 14:38:28 +07:00
struct list_node {
struct list_node *next, *prev;
};
struct kmod_list {
struct list_node node;
void *data;
};
struct kmod_list *kmod_list_append(struct kmod_list *list, void *data) __must_check;
struct kmod_list *kmod_list_prepend(struct kmod_list *list, void *data) __must_check;
2011-11-22 14:38:28 +07:00
struct kmod_list *kmod_list_remove(struct kmod_list *list);
struct kmod_list *kmod_list_remove_data(struct kmod_list *list,
const void *data) __must_check;
2011-11-22 14:38:28 +07:00
const char *kmod_get_dirname(struct kmod_ctx *ctx) __attribute__((nonnull(1)));
struct kmod_config {
struct kmod_list *aliases;
2011-11-30 03:48:02 +07:00
struct kmod_list *blacklists;
};
int kmod_parse_config_file(struct kmod_ctx *ctx, const char *filename, struct kmod_config *config);
int kmod_parse_config(struct kmod_ctx *ctx, struct kmod_config *config);
void kmod_free_config(struct kmod_ctx *ctx, struct kmod_config *config);
2011-12-01 03:18:13 +07:00
const char *kmod_alias_get_name(const struct kmod_list *l);
const char *kmod_alias_get_modname(const struct kmod_list *l);
char *getline_wrapped(FILE *fp, unsigned int *linenum);
char *underscores(struct kmod_ctx *ctx, char *s);
#define streq(a, b) (strcmp((a), (b)) == 0)
2011-11-21 23:35:35 +07:00
#endif