OpenWRT UCI API的使用
UCI 是OpenWRT为实现配置集中化而引入的一个软件包,
通过修改UCI,可以实现对OpenWRT的绝对部分配置的修改.LUCI(OpenWRT
的WEB配置界面)也是通过读UCI配置文件的操作来实现用户对路由的配置的。通过掌握UCI的API的使用,可以方便地将您的软件的配置接口集成到
LUCI中.
LUCI配置文件简介
LUCI的配置文件一般存储在 /etc/config目录下。比如网络配置文件则是 /etc/config/network 无线的配置文件是 /etc/config/wireless. 跟多配置文件的含义参考官方 WIKI
基本概念
UCI上下文: struct uci_context *
包(Package): 一个包对应一个UCI格式的文件.类型是 struct uci_package *
节(Section): 一个配置文件的节点. 类型是 struct uci_list *
值(Value):一个节下面可能包含多个值 一个值具有一个名字.
UCI配置文件的基本操作.
首先您需要引入头文件
-
#include <unistd.h>
-
#include <stdio.h>
-
#include <string.h>
-
#include <uci.h>
-
-
-
static struct uci_context * ctx = NULL;
-
-
-
-
bool load_config()
-
{
-
struct uci_package * pkg = NULL;
-
struct uci_element *e;
-
-
-
ctx = uci_alloc_context();
-
if (UCI_OK != uci_load(ctx, UCI_CONFIG_FILE, &pkg))
-
goto cleanup;
-
-
-
-
uci_foreach_element(&pkg->sections, e)
-
{
-
struct uci_section *s = uci_to_section(e);
-
-
-
-
if (NULL != (value = uci_lookup_option_string(ctx, s, "ipaddr")))
-
{
-
ip = strdup(value)
-
}
-
-
-
-
-
}
-
uci_unload(ctx, pkg);
-
cleanup:
-
uci_free_context(ctx);
-
ctx = NULL;
-
}
遍历一个UCI_TYPE_LIST 类型.
加入现在有一个如下的配置文件:
-
config "server" "webserver"
-
list "index" "index.html"
-
list "index" "index.php"
-
list "index" "default.html"
代码片:
-
-
struct uci_option * o = uci_lookup_option(ctx, s, "index");
-
if ((NULL != o) && (UCI_TYPE_LIST == o->type))
-
{
-
struct uci_element *e;
-
uci_foreach_element(&o->v.list, e)
-
{
-
-
-
}
-
}
写配置
UCI提供了一个简洁的办法来操作配置信息,例如有一个配置文件
-
#文件名: testconfig
-
config 'servver'
-
option 'value' '123' # 我们想修改 'value' 的值为 '456'
代码如下:
-
struct uci_context * ctx = uci_alloc_context();
-
struct uci_ptr ptr ={
-
.package = "config",
-
.section = "servver",
-
.option = "value",
-
.value = "256",
-
};
-
uci_set(_ctx,&ptr);
-
uci_commit(_ctx, &ptr.p, false);
-
uci_unload(_ctx,ptr.p);
-
-
-
uci_free_context(ctx);
依照上面的例子,我们可以举一反三, uci_ptr 用来指定信息.而是用uci_set则是写入信息.同类的函数有如下几个: 针对list的操作:
-
uci_add_list()
-
uci_del_list()
-
uci_delete()
阅读(1969) | 评论(0) | 转发(1) |