我正在尝试编写一个使用linux看门狗驱动程序ping看门狗设备的服务。 在名为'LoadConfigurationFile'的函数中,我将指针传递给上面定义的结构。然后该函数获取一个字符串,并使用库调用(libconfig)将其存储在结构中变量的地址处。 但是当我访问变量'printf(“%s \ n”,options.devicepath)时;返回1;'而不是按预期打印配置文件的内容:“/ dev / watchdog”,程序显示“ / watchdog”。
#include <errno.h>
#include <getopt.h>
#include <limits.h>
#include <linux/types.h>
#include <linux/watchdog.h>
#include <signal.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <syslog.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/mman.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>
#include <libconfig.h>
struct cfgoptions {
const char* devicepath;
};
struct cfgoptions options;
char *confile = "/etc/watchdogd.cfg";
int LoadConfigurationFile(struct cfgoptions *s);
int main(int argc, char *argv[])
{
struct cfgoptions *st_ptr;
st_ptr = &options;
if (LoadConfigurationFile(st_ptr) < 0)
/*exit(EXIT_FAILURE);*/
/**/
printf("%s\n", options.devicepath);return 1;
/**/
int LoadConfigurationFile(struct cfgoptions *s)
{
config_t cfg;
config_init(&cfg);
if (!config_read_file(&cfg, confile) && config_error_file(&cfg) == NULL)
{
fprintf(stderr, "daemon: cannot open configuration file: %s\n", config_error_file(&cfg));
config_destroy(&cfg);
return -1;
} else if (!config_read_file(&cfg, confile)) {
fprintf(stderr, "daemon:%s:%d: %s\n", config_error_file(&cfg), config_error_line(&cfg), config_error_text(&cfg));
config_destroy(&cfg);
config_destroy(&cfg);
return -1;
}
if (!config_lookup_string(&cfg, "watchdog-device", &s->devicepath))
s->devicepath = "/dev/watchdog";
config_destroy(&cfg);
return 0;
}
/etc/watchdogd.cfg:
watchdog-device =“/ dev / watchdog”
int config_setting_lookup_string(const config_setting_t *setting,
const char *name, const char **value)
{
config_setting_t *member = config_setting_get_member(setting, name);
if(! member)
return(CONFIG_FALSE);
if(config_setting_type(member) != CONFIG_TYPE_STRING)
return(CONFIG_FALSE);
*value = config_setting_get_string(member);
return(CONFIG_TRUE);
}
config_setting_t *config_setting_get_member(const config_setting_t *setting,
const char *name)
{
if(setting->type != CONFIG_TYPE_GROUP)
return(NULL);
return(__config_list_search(setting->value.list, name, NULL));
}
const char *config_setting_get_string(const config_setting_t *setting)
{
return((setting->type == CONFIG_TYPE_STRING) ? setting->value.sval : NULL);
}
答案 0 :(得分:2)
问题是你在调用config_destroy。这会丢失在查找期间分配的所有数据..
- 功能:void config_destroy(config_t * config) 这些函数初始化并销毁配置对象配置。
config_init()将config指向的config_t结构初始化为新的空配置。
config_destroy()销毁配置配置,释放与配置关联的所有内存,但不尝试取消分配config_t结构本身。
非常肯定。
尝试摆脱那条线,看看会发生什么。
更多:当libconfig为你传入的指针分配内存时,它必须将内存引用保留在某处,以便以后可以清理它们。那就是cfg对象。它只是保存库分配的所有内容的大记录。当你销毁它时,库必须释放所有分配的内存,否则它将永远泄露。