mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
1944 lines
48 KiB
C
1944 lines
48 KiB
C
/*
|
|
* Copyright (C) 2019 iopsys Software Solutions AB
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 2.1
|
|
* as published by the Free Software Foundation
|
|
*
|
|
* Author MOHAMED Kallel <mohamed.kallel@pivasoftware.com>
|
|
* Author Imen Bhiri <imen.bhiri@pivasoftware.com>
|
|
* Author Feten Besbes <feten.besbes@pivasoftware.com>
|
|
* Author Omar Kallel <omar.kallel@pivasoftware.com>
|
|
* Author Amin Ben Ramdhane <amin.benramdhane@pivasoftware.com>
|
|
*
|
|
*/
|
|
|
|
#include "dmmem.h"
|
|
#include "dmcommon.h"
|
|
#include "dmbbf.h"
|
|
|
|
#define MAX_DM_PATH (1024)
|
|
|
|
char *DMT_TYPE[] = {
|
|
[DMT_STRING] = "xsd:string",
|
|
[DMT_UNINT] = "xsd:unsignedInt",
|
|
[DMT_INT] = "xsd:int",
|
|
[DMT_UNLONG] = "xsd:unsignedLong",
|
|
[DMT_LONG] = "xsd:long",
|
|
[DMT_BOOL] = "xsd:boolean",
|
|
[DMT_TIME] = "xsd:dateTime",
|
|
[DMT_HEXBIN] = "xsd:hexBinary",
|
|
[DMT_BASE64] = "xsd:base64",
|
|
[DMT_COMMAND] = "xsd:command",
|
|
[DMT_EVENT] = "xsd:event"
|
|
};
|
|
|
|
struct dm_permession_s DMREAD = {"0", NULL};
|
|
struct dm_permession_s DMWRITE = {"1", NULL};
|
|
struct dm_permession_s DMSYNC = {"sync", NULL};
|
|
struct dm_permession_s DMASYNC = {"async", NULL};
|
|
|
|
static int dm_browse(struct dmctx *dmctx, DMNODE *parent_node, DMOBJ *entryobj, void *data, char *instance);
|
|
|
|
static bool is_instance_number_alias(char **str)
|
|
{
|
|
char *s = *str;
|
|
|
|
if (*(s-1) != '.')
|
|
return 0;
|
|
|
|
if (isdigit(*s)) {
|
|
while(isdigit(*s))
|
|
s++;
|
|
|
|
if (*s == '.') {
|
|
*str = s - 1;
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
if (*s == '[') {
|
|
while(*s != ']')
|
|
s++;
|
|
|
|
if (*(s+1) == '.') {
|
|
*str = s;
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static char *dm_strstr_wildcard(char *str, char *match)
|
|
{
|
|
char *sp = str, *mp = match;
|
|
|
|
if (str == NULL || match == NULL)
|
|
return NULL;
|
|
|
|
while (*match) {
|
|
if (*str == '\0')
|
|
return NULL;
|
|
|
|
if ((*match == *str) ||
|
|
(mp != match && *match == '*' && is_instance_number_alias(&str)) ||
|
|
(sp != str && *str == '*' && is_instance_number_alias(&match))) {
|
|
str++;
|
|
match++;
|
|
} else {
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
return sp;
|
|
}
|
|
|
|
static char *find_param_postfix_wildcard(char *str1, char *str2)
|
|
{
|
|
char *sp1 = str1, *sp2 = str2;
|
|
|
|
if (str1 == NULL || str2 == NULL)
|
|
return NULL;
|
|
|
|
if (*str1 == '\0')
|
|
return NULL;
|
|
|
|
while (*str2) {
|
|
if (*str1 == '\0')
|
|
return str2;
|
|
|
|
if ((*str2 == *str1) ||
|
|
(sp2 != str2 && *str2 == '*' && is_instance_number_alias(&str1)) ||
|
|
(sp1 != str1 && *str1 == '*' && is_instance_number_alias(&str2))) {
|
|
str1++;
|
|
str2++;
|
|
} else {
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
return str2;
|
|
}
|
|
|
|
static int dm_strcmp_wildcard(char *str1, char *str2)
|
|
{
|
|
char *sp1 = str1, *sp2 = str2;
|
|
|
|
if (str1 == NULL || str2 == NULL)
|
|
return -1;
|
|
|
|
while (*str2) {
|
|
if (*str1 == '\0')
|
|
return -1;
|
|
|
|
if ((*str2 == *str1) ||
|
|
(sp2 != str2 && *str2 == '*' && is_instance_number_alias(&str1)) ||
|
|
(sp1 != str1 && *str1 == '*' && is_instance_number_alias(&str2))) {
|
|
str1++;
|
|
str2++;
|
|
} else {
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
if (*str1)
|
|
return -1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int plugin_obj_match(DMOBJECT_ARGS)
|
|
{
|
|
if (node->matched)
|
|
return 0;
|
|
|
|
if (!dmctx->inparam_isparam && DM_STRSTR(node->current_object, dmctx->in_param) == node->current_object) {
|
|
node->matched++;
|
|
dmctx->findparam = 1;
|
|
return 0;
|
|
}
|
|
|
|
if (DM_STRSTR(dmctx->in_param, node->current_object) == dmctx->in_param)
|
|
return 0;
|
|
|
|
return FAULT_9005;
|
|
}
|
|
|
|
static int plugin_leaf_match(DMOBJECT_ARGS)
|
|
{
|
|
if (node->matched)
|
|
return 0;
|
|
|
|
if (!dmctx->inparam_isparam)
|
|
return FAULT_9005;
|
|
|
|
char *str = dmctx->in_param + DM_STRLEN(node->current_object);
|
|
if (!DM_STRCHR(str, '.'))
|
|
return 0;
|
|
|
|
return FAULT_9005;
|
|
}
|
|
|
|
static int plugin_leaf_onlyobj_match(DMOBJECT_ARGS)
|
|
{
|
|
return FAULT_9005;
|
|
}
|
|
|
|
static int plugin_obj_nextlevel_match(DMOBJECT_ARGS)
|
|
{
|
|
if (DM_STRCMP(dmctx->in_param, "Device") == 0 && DM_STRCMP(dmctx->in_value, "core") != 0)
|
|
return FAULT_9005;
|
|
|
|
unsigned int current_object_dot_num = count_occurrences(node->current_object, '.');
|
|
unsigned int in_path_dot_num = count_occurrences(dmctx->in_param, '.');
|
|
|
|
if (current_object_dot_num > in_path_dot_num + 1)
|
|
return FAULT_9005;
|
|
|
|
if (node->matched > 1)
|
|
return FAULT_9005;
|
|
|
|
if (node->matched) {
|
|
node->matched++;
|
|
return 0;
|
|
}
|
|
|
|
if (!dmctx->inparam_isparam && DM_STRSTR(node->current_object, dmctx->in_param) == node->current_object) {
|
|
node->matched++;
|
|
dmctx->findparam = 1;
|
|
return 0;
|
|
}
|
|
|
|
if (DM_STRSTR(dmctx->in_param, node->current_object) == dmctx->in_param)
|
|
return 0;
|
|
|
|
return FAULT_9005;
|
|
}
|
|
|
|
static int plugin_leaf_nextlevel_match(DMOBJECT_ARGS)
|
|
{
|
|
if (node->matched > 1)
|
|
return FAULT_9005;
|
|
|
|
if (node->matched)
|
|
return 0;
|
|
|
|
if (!dmctx->inparam_isparam)
|
|
return FAULT_9005;
|
|
|
|
char *str = dmctx->in_param + DM_STRLEN(node->current_object);
|
|
if (!DM_STRCHR(str, '.'))
|
|
return 0;
|
|
|
|
return FAULT_9005;
|
|
}
|
|
|
|
static int plugin_obj_wildcard_match(DMOBJECT_ARGS)
|
|
{
|
|
if (node->matched)
|
|
return 0;
|
|
|
|
if (!dmctx->inparam_isparam && dm_strstr_wildcard(node->current_object, dmctx->in_param) == node->current_object) {
|
|
node->matched++;
|
|
dmctx->findparam = 1;
|
|
return 0;
|
|
}
|
|
|
|
if (dm_strstr_wildcard(dmctx->in_param, node->current_object) == dmctx->in_param)
|
|
return 0;
|
|
|
|
return FAULT_9005;
|
|
}
|
|
|
|
static int plugin_leaf_wildcard_match(DMOBJECT_ARGS)
|
|
{
|
|
if (node->matched)
|
|
return 0;
|
|
|
|
if (!dmctx->inparam_isparam)
|
|
return FAULT_9005;
|
|
|
|
char *str = find_param_postfix_wildcard(node->current_object, dmctx->in_param);
|
|
if (!DM_STRCHR(str, '.'))
|
|
return 0;
|
|
|
|
return FAULT_9005;
|
|
}
|
|
|
|
static int plugin_obj_wildcard_nextlevel_match(DMOBJECT_ARGS)
|
|
{
|
|
if (DM_STRCMP(dmctx->in_param, "Device") == 0 && DM_STRCMP(dmctx->in_value, "core") != 0)
|
|
return FAULT_9005;
|
|
|
|
unsigned int current_object_dot_num = count_occurrences(node->current_object, '.');
|
|
unsigned int in_path_dot_num = count_occurrences(dmctx->in_param, '.');
|
|
|
|
if (current_object_dot_num > in_path_dot_num + 1)
|
|
return FAULT_9005;
|
|
|
|
if (node->matched > 1)
|
|
return FAULT_9005;
|
|
|
|
if (node->matched) {
|
|
node->matched++;
|
|
return 0;
|
|
}
|
|
|
|
if (!dmctx->inparam_isparam && dm_strstr_wildcard(node->current_object, dmctx->in_param) == node->current_object) {
|
|
node->matched++;
|
|
dmctx->findparam = 1;
|
|
return 0;
|
|
}
|
|
|
|
if (dm_strstr_wildcard(dmctx->in_param, node->current_object) == dmctx->in_param)
|
|
return 0;
|
|
|
|
return FAULT_9005;
|
|
}
|
|
|
|
static int plugin_leaf_wildcard_nextlevel_match(DMOBJECT_ARGS)
|
|
{
|
|
if (node->matched > 1)
|
|
return FAULT_9005;
|
|
|
|
if (node->matched)
|
|
return 0;
|
|
|
|
if (!dmctx->inparam_isparam)
|
|
return FAULT_9005;
|
|
|
|
char *str = find_param_postfix_wildcard(node->current_object, dmctx->in_param);
|
|
if (!DM_STRCHR(str, '.'))
|
|
return 0;
|
|
|
|
return FAULT_9005;
|
|
}
|
|
|
|
static int bbfdatamodel_matches(unsigned int dm_type, const enum bbfdm_type_enum type)
|
|
{
|
|
return (dm_type == BBFDM_BOTH || type == BBFDM_BOTH || dm_type == type) && type != BBFDM_NONE;
|
|
}
|
|
|
|
static bool check_dependency(const char *conf_obj)
|
|
{
|
|
#ifndef BBF_SCHEMA_FULL_TREE
|
|
/* Available cases */
|
|
/* one file => "file:/etc/config/network" */
|
|
/* multiple files => "file:/etc/config/network,/lib/netifd/proto/dhcp.sh" */
|
|
/* one ubus => "ubus:router.network" (with method : "ubus:router.network->hosts") */
|
|
/* multiple ubus => "ubus:system->info,dsl->status,wifi" */
|
|
/* one package => "opkg:icwmp" */
|
|
/* multiple packages => "opkg:icwmp,obuspa" */
|
|
/* common (files, ubus and opkg) => "file:/etc/config/network,/etc/config/dhcp;ubus:system,dsl->status;opkg:icwmp" */
|
|
|
|
char *pch = NULL, *spch = NULL;
|
|
char conf_list[512] = {0};
|
|
|
|
DM_STRNCPY(conf_list, conf_obj, sizeof(conf_list));
|
|
|
|
for (pch = strtok_r(conf_list, ";", &spch); pch != NULL; pch = strtok_r(NULL, ";", &spch)) {
|
|
char *conf_type = DM_STRCHR(pch, ':');
|
|
if (!conf_type)
|
|
return false;
|
|
|
|
char *conf_name = dmstrdup(conf_type + 1);
|
|
*conf_type = '\0';
|
|
|
|
char *token, *saveptr;
|
|
for (token = strtok_r(conf_name, ",", &saveptr); token != NULL; token = strtok_r(NULL, ",", &saveptr)) {
|
|
|
|
if (!strcmp(pch, "file") && !file_exists(token))
|
|
return false;
|
|
|
|
if (!strcmp(pch, "ubus") && !dmubus_object_method_exists(token))
|
|
return false;
|
|
|
|
if (!strcmp(pch, "opkg")) {
|
|
char opkg_path[256] = {0};
|
|
|
|
snprintf(opkg_path, sizeof(opkg_path), "/usr/lib/opkg/info/%s.control", token);
|
|
if (!file_exists(opkg_path))
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
return true;
|
|
}
|
|
|
|
static int dm_browse_leaf(struct dmctx *dmctx, DMNODE *parent_node, DMLEAF *leaf, void *data, char *instance)
|
|
{
|
|
int err = 0;
|
|
|
|
for (; (leaf && leaf->parameter); leaf++) {
|
|
|
|
if (!bbfdatamodel_matches(dmctx->dm_type, leaf->bbfdm_type))
|
|
continue;
|
|
|
|
if (!dmctx->isinfo) {
|
|
if (dmctx->iscommand != (leaf->type == DMT_COMMAND) || dmctx->isevent != (leaf->type == DMT_EVENT))
|
|
continue;
|
|
}
|
|
|
|
err = dmctx->method_param(dmctx, parent_node, leaf, data, instance);
|
|
if (dmctx->stop)
|
|
return err;
|
|
}
|
|
|
|
if (parent_node->obj) {
|
|
if (parent_node->obj->dynamicleaf) {
|
|
for (int i = 0; i < __INDX_DYNAMIC_MAX; i++) {
|
|
struct dm_dynamic_leaf *next_dyn_array = parent_node->obj->dynamicleaf + i;
|
|
if (next_dyn_array->nextleaf) {
|
|
for (int j = 0; next_dyn_array->nextleaf[j]; j++) {
|
|
DMLEAF *jleaf = next_dyn_array->nextleaf[j];
|
|
for (; (jleaf && jleaf->parameter); jleaf++) {
|
|
|
|
if (!bbfdatamodel_matches(dmctx->dm_type, jleaf->bbfdm_type))
|
|
continue;
|
|
|
|
if (!dmctx->isinfo) {
|
|
if (dmctx->iscommand != (jleaf->type == DMT_COMMAND) || dmctx->isevent != (jleaf->type == DMT_EVENT))
|
|
continue;
|
|
}
|
|
|
|
err = dmctx->method_param(dmctx, parent_node, jleaf, data, instance);
|
|
if (dmctx->stop)
|
|
return err;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
static void dm_browse_entry(struct dmctx *dmctx, DMNODE *parent_node, DMOBJ *entryobj, void *data, char *instance, char *parent_obj, int *err)
|
|
{
|
|
DMNODE node = {0};
|
|
|
|
node.obj = entryobj;
|
|
node.parent = parent_node;
|
|
node.instance_level = parent_node->instance_level;
|
|
node.matched = parent_node->matched;
|
|
node.prev_data = data;
|
|
node.prev_instance = instance;
|
|
|
|
if (!bbfdatamodel_matches(dmctx->dm_type, entryobj->bbfdm_type)) {
|
|
*err = FAULT_9005;
|
|
return;
|
|
}
|
|
|
|
if (entryobj->checkdep && (check_dependency(entryobj->checkdep) == false)) {
|
|
*err = FAULT_9005;
|
|
return;
|
|
}
|
|
|
|
if (entryobj->browseinstobj && dmctx->isgetschema)
|
|
dmasprintf(&(node.current_object), "%s%s.{i}.", parent_obj, entryobj->obj);
|
|
else
|
|
dmasprintf(&(node.current_object), "%s%s.", parent_obj, entryobj->obj);
|
|
|
|
if (dmctx->checkobj) {
|
|
*err = dmctx->checkobj(dmctx, &node, entryobj->permission, entryobj->addobj, entryobj->delobj, entryobj->get_linker, data, instance);
|
|
if (*err)
|
|
return;
|
|
}
|
|
|
|
#ifndef BBF_SCHEMA_FULL_TREE
|
|
if ((entryobj->browseinstobj && dmctx->isgetschema) || !dmctx->isgetschema) {
|
|
#endif
|
|
*err = dmctx->method_obj(dmctx, &node, entryobj->permission, entryobj->addobj, entryobj->delobj, entryobj->get_linker, data, instance);
|
|
if (dmctx->stop)
|
|
return;
|
|
#ifndef BBF_SCHEMA_FULL_TREE
|
|
}
|
|
#endif
|
|
|
|
if (entryobj->browseinstobj && !dmctx->isgetschema) {
|
|
entryobj->browseinstobj(dmctx, &node, data, instance);
|
|
*err = dmctx->faultcode;
|
|
return;
|
|
}
|
|
|
|
if (entryobj->leaf || entryobj->dynamicleaf) {
|
|
if (dmctx->checkleaf) {
|
|
*err = dmctx->checkleaf(dmctx, &node, entryobj->permission, entryobj->addobj, entryobj->delobj, entryobj->get_linker, data, instance);
|
|
if (!*err) {
|
|
*err = dm_browse_leaf(dmctx, &node, entryobj->leaf, data, instance);
|
|
if (dmctx->stop)
|
|
return;
|
|
}
|
|
} else {
|
|
*err = dm_browse_leaf(dmctx, &node, entryobj->leaf, data, instance);
|
|
if (dmctx->stop)
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (entryobj->nextobj || entryobj->nextdynamicobj)
|
|
*err = dm_browse(dmctx, &node, entryobj->nextobj, data, instance);
|
|
}
|
|
|
|
static int dm_browse(struct dmctx *dmctx, DMNODE *parent_node, DMOBJ *entryobj, void *data, char *instance)
|
|
{
|
|
char *parent_obj = parent_node->current_object;
|
|
int err = 0;
|
|
|
|
for (; (entryobj && entryobj->obj); entryobj++) {
|
|
dm_browse_entry(dmctx, parent_node, entryobj, data, instance, parent_obj, &err);
|
|
if (dmctx->stop)
|
|
return err;
|
|
}
|
|
|
|
if (parent_node->obj) {
|
|
if (parent_node->obj->nextdynamicobj) {
|
|
for (int i = 0; i < __INDX_DYNAMIC_MAX; i++) {
|
|
struct dm_dynamic_obj *next_dyn_array = parent_node->obj->nextdynamicobj + i;
|
|
if (next_dyn_array->nextobj) {
|
|
for (int j = 0; next_dyn_array->nextobj[j]; j++) {
|
|
DMOBJ *jentryobj = next_dyn_array->nextobj[j];
|
|
for (; (jentryobj && jentryobj->obj); jentryobj++) {
|
|
dm_browse_entry(dmctx, parent_node, jentryobj, data, instance, parent_obj, &err);
|
|
if (dmctx->stop)
|
|
return err;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
int dm_link_inst_obj(struct dmctx *dmctx, DMNODE *parent_node, void *data, char *instance)
|
|
{
|
|
int err = 0;
|
|
char *parent_obj;
|
|
DMNODE node = {0};
|
|
|
|
if (parent_node->browse_type == BROWSE_FIND_MAX_INST) {
|
|
int curr_inst = (instance && *instance != '\0') ? DM_STRTOL(instance) : 0;
|
|
if (curr_inst > parent_node->max_instance)
|
|
parent_node->max_instance = curr_inst;
|
|
return 0;
|
|
}
|
|
|
|
parent_node->num_of_entries++;
|
|
if (parent_node->browse_type == BROWSE_NUM_OF_ENTRIES)
|
|
return 0;
|
|
|
|
DMOBJ *prevobj = parent_node->obj;
|
|
DMOBJ *nextobj = prevobj->nextobj;
|
|
DMLEAF *nextleaf = prevobj->leaf;
|
|
|
|
node.obj = prevobj;
|
|
node.parent = parent_node;
|
|
node.instance_level = parent_node->instance_level + 1;
|
|
node.is_instanceobj = 1;
|
|
node.matched = parent_node->matched;
|
|
|
|
parent_obj = parent_node->current_object;
|
|
if (instance == NULL)
|
|
return -1;
|
|
dmasprintf(&node.current_object, "%s%s.", parent_obj, instance);
|
|
if (dmctx->checkobj) {
|
|
err = dmctx->checkobj(dmctx, &node, prevobj->permission, prevobj->addobj, prevobj->delobj, prevobj->get_linker, data, instance);
|
|
if (err)
|
|
return err;
|
|
}
|
|
err = dmctx->method_obj(dmctx, &node, prevobj->permission, prevobj->addobj, prevobj->delobj, prevobj->get_linker, data, instance);
|
|
if (dmctx->stop)
|
|
return err;
|
|
if (nextleaf) {
|
|
if (dmctx->checkleaf) {
|
|
err = dmctx->checkleaf(dmctx, &node, prevobj->permission, prevobj->addobj, prevobj->delobj, prevobj->get_linker, data, instance);
|
|
if (!err) {
|
|
err = dm_browse_leaf(dmctx, &node, nextleaf, data, instance);
|
|
if (dmctx->stop)
|
|
return err;
|
|
}
|
|
} else {
|
|
err = dm_browse_leaf(dmctx, &node, nextleaf, data, instance);
|
|
if (dmctx->stop)
|
|
return err;
|
|
}
|
|
}
|
|
if (nextobj || prevobj->nextdynamicobj) {
|
|
err = dm_browse(dmctx, &node, nextobj, data, instance);
|
|
if (dmctx->stop)
|
|
return err;
|
|
}
|
|
return err;
|
|
}
|
|
|
|
static int rootcmp(const char *inparam, const char *rootobj)
|
|
{
|
|
char buf[32];
|
|
snprintf(buf, sizeof(buf), "%s.", rootobj);
|
|
return DM_STRCMP(inparam, buf);
|
|
}
|
|
|
|
/***************************
|
|
* update instance & alias
|
|
***************************/
|
|
int get_number_of_entries(struct dmctx *ctx, void *data, char *instance, int (*browseinstobj)(struct dmctx *ctx, struct dmnode *node, void *data, char *instance))
|
|
{
|
|
DMNODE node = {0};
|
|
|
|
node.browse_type = BROWSE_NUM_OF_ENTRIES;
|
|
(browseinstobj)(ctx, &node, data, instance);
|
|
return node.num_of_entries;
|
|
}
|
|
|
|
static int find_max_instance(struct dmctx *ctx, DMNODE *node)
|
|
{
|
|
if (node->max_instance == 0) {
|
|
node->browse_type = BROWSE_FIND_MAX_INST;
|
|
node->obj->browseinstobj(ctx, node, node->prev_data, node->prev_instance);
|
|
node->browse_type = BROWSE_NORMAL;
|
|
}
|
|
|
|
return ++(node->max_instance);
|
|
}
|
|
|
|
char *handle_instance(struct dmctx *dmctx, DMNODE *parent_node, struct uci_section *s, const char *inst_opt, const char *alias_opt)
|
|
{
|
|
char buf[64] = {0};
|
|
char *instance = NULL;
|
|
|
|
dmuci_get_value_by_section_string(s, inst_opt, &instance);
|
|
|
|
switch(parent_node->browse_type) {
|
|
case BROWSE_NORMAL:
|
|
if (instance && *instance == '\0') {
|
|
int max_inst = find_max_instance(dmctx, parent_node);
|
|
snprintf(buf, sizeof(buf), "%d", max_inst);
|
|
dmuci_set_value_by_section(s, inst_opt, buf);
|
|
instance = dmstrdup(buf);
|
|
}
|
|
break;
|
|
case BROWSE_FIND_MAX_INST:
|
|
case BROWSE_NUM_OF_ENTRIES:
|
|
break;
|
|
}
|
|
|
|
dmctx->inst_buf[parent_node->instance_level] = instance ? instance : "";
|
|
|
|
return instance ? instance : "";
|
|
}
|
|
|
|
char *handle_instance_without_section(struct dmctx *dmctx, DMNODE *parent_node, int inst_nbr)
|
|
{
|
|
char *instance = NULL;
|
|
|
|
switch(parent_node->browse_type) {
|
|
case BROWSE_NORMAL:
|
|
dmasprintf(&instance, "%d", inst_nbr);
|
|
break;
|
|
case BROWSE_FIND_MAX_INST:
|
|
case BROWSE_NUM_OF_ENTRIES:
|
|
break;
|
|
}
|
|
|
|
dmctx->inst_buf[parent_node->instance_level] = instance ? instance : "";
|
|
|
|
return instance ? instance : "";
|
|
}
|
|
|
|
int get_empty(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value)
|
|
{
|
|
*value = dmstrdup("");
|
|
return 0;
|
|
}
|
|
|
|
static void bb_add_flags_arr(struct blob_buf *bb, uint32_t dm_flags)
|
|
{
|
|
if (!bb || !dm_flags)
|
|
return;
|
|
|
|
//void *flags_arr = blobmsg_open_array(bb, "flags");
|
|
|
|
if (dm_flags & DM_FLAG_REFERENCE)
|
|
blobmsg_add_u8(bb, "reference", true);
|
|
/*if (dm_flags & DM_FLAG_UNIQUE)
|
|
blobmsg_add_string(bb, NULL, "Unique");
|
|
if (dm_flags & DM_FLAG_LINKER)
|
|
blobmsg_add_string(bb, NULL, "Linker");
|
|
if (dm_flags & DM_FLAG_SECURE)
|
|
blobmsg_add_string(bb, NULL, "Secure");*/
|
|
|
|
//blobmsg_close_array(bb, flags_arr);
|
|
}
|
|
|
|
void fill_blob_param(struct blob_buf *bb, const char *path, const char *data, const char *type, uint32_t dm_flags)
|
|
{
|
|
if (!bb || !path || !data || !type)
|
|
return;
|
|
|
|
void *table = blobmsg_open_table(bb, NULL);
|
|
|
|
blobmsg_add_string(bb, "path", path);
|
|
blobmsg_add_string(bb, "data", data);
|
|
blobmsg_add_string(bb, "type", type);
|
|
bb_add_flags_arr(bb, dm_flags);
|
|
|
|
blobmsg_close_table(bb, table);
|
|
}
|
|
|
|
void fill_blob_event(struct blob_buf *bb, const char *path, const char *type, void *data)
|
|
{
|
|
if (!bb || !path || !type)
|
|
return;
|
|
|
|
void *table = blobmsg_open_table(bb, NULL);
|
|
|
|
blobmsg_add_string(bb, "path", path);
|
|
blobmsg_add_string(bb, "type", type);
|
|
|
|
if (data) {
|
|
event_args *ev = (event_args *)data;
|
|
|
|
blobmsg_add_string(bb, "data", (ev && ev->name) ? ev->name : "");
|
|
|
|
if (ev && ev->param) {
|
|
const char **in = ev->param;
|
|
void *key = blobmsg_open_array(bb, "input");
|
|
|
|
for (int i = 0; in[i] != NULL; i++) {
|
|
void *in_table = blobmsg_open_table(bb, NULL);
|
|
blobmsg_add_string(bb, "path", in[i]);
|
|
blobmsg_close_table(bb, in_table);
|
|
}
|
|
|
|
blobmsg_close_array(bb, key);
|
|
}
|
|
}
|
|
|
|
blobmsg_close_table(bb, table);
|
|
}
|
|
|
|
void fill_blob_operate(struct blob_buf *bb, const char *path, const char *data, const char *type, void *in_out)
|
|
{
|
|
if (!bb || !path || !data || !type)
|
|
return;
|
|
|
|
void *op_table = blobmsg_open_table(bb, NULL);
|
|
|
|
blobmsg_add_string(bb, "path", path);
|
|
blobmsg_add_string(bb, "type", type);
|
|
blobmsg_add_string(bb, "data", data);
|
|
|
|
if (in_out) {
|
|
void *array, *table;
|
|
const char **in, **out;
|
|
operation_args *args;
|
|
int i;
|
|
|
|
args = (operation_args *)in_out;
|
|
in = args->in;
|
|
if (in) {
|
|
array = blobmsg_open_array(bb, "input");
|
|
|
|
for (i = 0; in[i] != NULL; i++) {
|
|
table = blobmsg_open_table(bb, NULL);
|
|
blobmsg_add_string(bb, "path", in[i]);
|
|
blobmsg_close_table(bb, table);
|
|
}
|
|
|
|
blobmsg_close_array(bb, array);
|
|
}
|
|
|
|
out = args->out;
|
|
if (out) {
|
|
array = blobmsg_open_array(bb, "output");
|
|
|
|
for (i = 0; out[i] != NULL; i++) {
|
|
table = blobmsg_open_table(bb, NULL);
|
|
blobmsg_add_string(bb, "path", out[i]);
|
|
blobmsg_close_table(bb, table);
|
|
}
|
|
|
|
blobmsg_close_array(bb, array);
|
|
}
|
|
}
|
|
|
|
blobmsg_close_table(bb, op_table);
|
|
}
|
|
|
|
int string_to_bool(const char *v, bool *b)
|
|
{
|
|
if (v[0] == '1' && v[1] == '\0') {
|
|
*b = true;
|
|
return 0;
|
|
}
|
|
if (v[0] == '0' && v[1] == '\0') {
|
|
*b = false;
|
|
return 0;
|
|
}
|
|
if (strcasecmp(v, "true") == 0) {
|
|
*b = true;
|
|
return 0;
|
|
}
|
|
if (strcasecmp(v, "false") == 0) {
|
|
*b = false;
|
|
return 0;
|
|
}
|
|
*b = false;
|
|
return -1;
|
|
}
|
|
|
|
static int is64digit(char c)
|
|
{
|
|
if ((c >= '0' && c <= '9') ||
|
|
(c >= 'a' && c <= 'z') ||
|
|
(c >= 'A' && c <= 'Z') ||
|
|
(c == '+' || c == '/' || c == '='))
|
|
return 1;
|
|
return 0;
|
|
}
|
|
|
|
static char *check_value_by_type(const char *param_name, char *value, int type)
|
|
{
|
|
int i = 0, len = DM_STRLEN(value);
|
|
char buf[len + 1];
|
|
struct tm tm;
|
|
|
|
snprintf(buf, sizeof(buf), "%s", value);
|
|
|
|
switch (type) {
|
|
case DMT_UNINT:
|
|
case DMT_UNLONG:
|
|
while (buf[i] != 0) {
|
|
if (isdigit(buf[i]) == 0) {
|
|
BBF_WARNING("The parameter '%s' contains an invalid value '%s' for its type. Defaulting to '0'", param_name, buf);
|
|
return "0";
|
|
}
|
|
i++;
|
|
}
|
|
break;
|
|
case DMT_INT:
|
|
case DMT_LONG:
|
|
if (buf[i] == '-')
|
|
i++;
|
|
while (buf[i] != 0) {
|
|
if (isdigit(buf[i]) == 0) {
|
|
BBF_WARNING("The parameter '%s' contains an invalid value '%s' for its type. Defaulting to '0'", param_name, buf);
|
|
return "0";
|
|
}
|
|
i++;
|
|
}
|
|
break;
|
|
case DMT_BOOL:
|
|
return dmuci_string_to_boolean(buf) ? "1" : "0";
|
|
case DMT_HEXBIN:
|
|
while (buf[i] != 0) {
|
|
if (isxdigit(buf[i]) == 0) {
|
|
BBF_WARNING("The parameter '%s' contains an invalid hexadecimal value '%s'. Defaulting to an empty value", param_name, buf);
|
|
return "";
|
|
}
|
|
i++;
|
|
}
|
|
break;
|
|
case DMT_BASE64:
|
|
while (buf[i] != 0) {
|
|
if (is64digit(buf[i]) == 0) {
|
|
BBF_WARNING("The parameter '%s' contains an invalid Base64 value '%s'. Defaulting to 'AA=='.", param_name, buf);
|
|
return "AA==";
|
|
}
|
|
i++;
|
|
}
|
|
break;
|
|
case DMT_TIME:
|
|
if (!strptime(buf, "%Y-%m-%dT%H:%M:%S", &tm)) {
|
|
BBF_WARNING("The parameter '%s' contains an invalid time value '%s'. Defaulting to '0001-01-01T00:00:00Z'.", param_name, buf);
|
|
return "0001-01-01T00:00:00Z";
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return value;
|
|
}
|
|
|
|
static char *get_default_value_by_type(const char *param_name, int type)
|
|
{
|
|
switch (type) {
|
|
case DMT_UNINT:
|
|
case DMT_INT:
|
|
case DMT_UNLONG:
|
|
case DMT_LONG:
|
|
case DMT_BOOL:
|
|
BBF_WARNING("The parameter '%s' is empty but must have a value according to its type. Defaulting to '0'", param_name);
|
|
return "0";
|
|
case DMT_BASE64:
|
|
BBF_WARNING("The parameter '%s' is empty but must have a value according to its Base64 type. Defaulting to 'AA=='", param_name);
|
|
return "AA=="; // base64 encoded hex value 00
|
|
case DMT_TIME:
|
|
BBF_WARNING("The parameter '%s' is empty but must have a value according to its Time type. Defaulting to '0001-01-01T00:00:00Z'", param_name);
|
|
return "0001-01-01T00:00:00Z";
|
|
default:
|
|
return "";
|
|
}
|
|
}
|
|
|
|
static void convert_to_regex(const char *input, char *output)
|
|
{
|
|
int j = 0;
|
|
|
|
for (int i = 0; input[i] != '\0'; i++) {
|
|
if (input[i] == '.') {
|
|
output[j++] = '\\'; // Escape '.'
|
|
output[j++] = '.';
|
|
} else if (input[i] == '*') {
|
|
output[j++] = '['; // Replace '*' with '[^.]+'
|
|
output[j++] = '^';
|
|
output[j++] = '.';
|
|
output[j++] = ']';
|
|
output[j++] = '+';
|
|
} else {
|
|
output[j++] = input[i]; // Copy other characters
|
|
}
|
|
}
|
|
|
|
output[j++] = '.'; // Allow anything after the base match
|
|
output[j++] = '*';
|
|
output[j] = '\0'; // Null-terminate the string
|
|
}
|
|
|
|
static bool is_same_reference_path(const char *curr_value, const char *in_value, char *out, size_t out_len)
|
|
{
|
|
char *pch = NULL, *pchr = NULL;
|
|
char buf[2048] = {0};
|
|
|
|
if (!curr_value || !in_value || !out || !out_len)
|
|
return false;
|
|
|
|
if (strcmp(curr_value, in_value) == 0)
|
|
return true;
|
|
|
|
if (DM_STRLEN(in_value) == 0) {
|
|
DM_STRNCPY(out, "=>", sizeof(out_len));
|
|
return false;
|
|
}
|
|
|
|
DM_STRNCPY(buf, curr_value, sizeof(buf));
|
|
|
|
for (pch = strtok_r(buf, ",", &pchr); pch != NULL; pch = strtok_r(NULL, ",", &pchr)) {
|
|
|
|
char *p = strchr(pch, '[');
|
|
if (p) {
|
|
char regex_pattern[MAX_DM_PATH * 2] = {0};
|
|
char path[MAX_DM_PATH] = {0};
|
|
char key_name[256], key_value[256];
|
|
regmatch_t pmatch[2];
|
|
regmatch_t p_match[1];
|
|
|
|
if (!match(pch, "\\[(.*?)\\]", 2, pmatch))
|
|
continue;
|
|
|
|
snprintf(path, pmatch[0].rm_so + 1, "%s", pch);
|
|
int len = DM_STRLEN(path);
|
|
if (!len)
|
|
continue;
|
|
|
|
char *match_str = pch + pmatch[1].rm_so;
|
|
if (DM_STRLEN(match_str) == 0)
|
|
continue;
|
|
|
|
int n = sscanf(match_str, "%255[^=]==\"%255[^\"]\"", key_name, key_value);
|
|
if (n != 2) {
|
|
n = sscanf(match_str, "%255[^=]==%255[^]]", key_name, key_value);
|
|
if (n != 2)
|
|
continue;
|
|
}
|
|
|
|
char *tag = strstr(in_value, "=>");
|
|
if (!tag)
|
|
continue;
|
|
|
|
convert_to_regex(path, regex_pattern);
|
|
|
|
if (match(in_value, regex_pattern, 1, p_match) && strncmp(key_value, tag + 2, strlen(key_value)) == 0) {
|
|
return true;
|
|
}
|
|
} else {
|
|
if (strncmp(pch, in_value, strlen(pch)) == 0)
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/* **********
|
|
* get value
|
|
* **********/
|
|
static int get_value_obj(DMOBJECT_ARGS)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static int get_value_param(DMPARAM_ARGS)
|
|
{
|
|
char full_param[MAX_DM_PATH] = {0};
|
|
char *value = dmstrdup("");
|
|
|
|
snprintf(full_param, sizeof(full_param), "%s%s", node->current_object, leaf->parameter);
|
|
|
|
(leaf->getvalue)(full_param, dmctx, data, instance, &value);
|
|
|
|
if ((leaf->dm_flags & DM_FLAG_SECURE) && (dmctx->dm_type == BBFDM_CWMP)) {
|
|
value = dmstrdup("");
|
|
} else if (value && *value) {
|
|
value = check_value_by_type(full_param, value, leaf->type);
|
|
} else {
|
|
value = get_default_value_by_type(full_param, leaf->type);
|
|
}
|
|
|
|
fill_blob_param(&dmctx->bb, full_param, value, DMT_TYPE[leaf->type], leaf->dm_flags);
|
|
return 0;
|
|
}
|
|
|
|
static int mobj_get_value_in_param(DMOBJECT_ARGS)
|
|
{
|
|
return 0;
|
|
}
|
|
static int mparam_get_value_in_param(DMPARAM_ARGS)
|
|
{
|
|
char full_param[MAX_DM_PATH] = {0};
|
|
char *value = dmstrdup("");
|
|
|
|
snprintf(full_param, sizeof(full_param), "%s%s", node->current_object, leaf->parameter);
|
|
|
|
if (dmctx->iswildcard) {
|
|
if (dm_strcmp_wildcard(dmctx->in_param, full_param) != 0)
|
|
return FAULT_9005;
|
|
} else {
|
|
if (DM_STRCMP(dmctx->in_param, full_param) != 0)
|
|
return FAULT_9005;
|
|
}
|
|
|
|
(leaf->getvalue)(full_param, dmctx, data, instance, &value);
|
|
|
|
if ((leaf->dm_flags & DM_FLAG_SECURE) && (dmctx->dm_type == BBFDM_CWMP)) {
|
|
value = dmstrdup("");
|
|
} else if (value && *value) {
|
|
value = check_value_by_type(full_param, value, leaf->type);
|
|
} else {
|
|
value = get_default_value_by_type(full_param, leaf->type);
|
|
}
|
|
|
|
fill_blob_param(&dmctx->bb, full_param, value, DMT_TYPE[leaf->type], leaf->dm_flags);
|
|
|
|
dmctx->findparam = (dmctx->iswildcard) ? 1 : 0;
|
|
dmctx->stop = (dmctx->iswildcard) ? false : true;
|
|
return 0;
|
|
}
|
|
|
|
int dm_entry_get_value(struct dmctx *dmctx)
|
|
{
|
|
int err = 0;
|
|
unsigned char findparam_check = 0;
|
|
DMOBJ *root = dmctx->dm_entryobj;
|
|
DMNODE node = {.current_object = ""};
|
|
unsigned int len = DM_STRLEN(dmctx->in_param);
|
|
|
|
if ((len > 2 && dmctx->in_param[len - 1] == '.' && dmctx->in_param[len - 2] == '*') ||
|
|
(dmctx->in_param[0] == '.' && len == 1))
|
|
return FAULT_9005;
|
|
|
|
if (dmctx->in_param[0] == '\0' || rootcmp(dmctx->in_param, root->obj) == 0) {
|
|
dmctx->inparam_isparam = 0;
|
|
dmctx->method_obj = get_value_obj;
|
|
dmctx->method_param = get_value_param;
|
|
dmctx->checkobj = NULL;
|
|
dmctx->checkleaf = NULL;
|
|
dmctx->findparam = 1;
|
|
dmctx->stop = 0;
|
|
findparam_check = 1;
|
|
} else if (dmctx->in_param[len - 1] == '.') {
|
|
dmctx->inparam_isparam = 0;
|
|
dmctx->findparam = 0;
|
|
dmctx->stop = 0;
|
|
dmctx->checkobj = (dmctx->iswildcard) ? plugin_obj_wildcard_match : plugin_obj_match;
|
|
dmctx->checkleaf = (dmctx->iswildcard) ? plugin_leaf_wildcard_match : plugin_leaf_match;
|
|
dmctx->method_obj = get_value_obj;
|
|
dmctx->method_param = get_value_param;
|
|
findparam_check = 1;
|
|
} else {
|
|
dmctx->inparam_isparam = 1;
|
|
dmctx->findparam = 0;
|
|
dmctx->stop = 0;
|
|
dmctx->checkobj = (dmctx->iswildcard) ? plugin_obj_wildcard_match : plugin_obj_match;
|
|
dmctx->checkleaf = (dmctx->iswildcard) ? plugin_leaf_wildcard_match : plugin_leaf_match;
|
|
dmctx->method_obj = mobj_get_value_in_param;
|
|
dmctx->method_param = mparam_get_value_in_param;
|
|
findparam_check = (dmctx->iswildcard) ? 1 : 0;
|
|
}
|
|
|
|
err = dm_browse(dmctx, &node, root, NULL, NULL);
|
|
|
|
return (findparam_check && dmctx->findparam) ? 0 : err;
|
|
}
|
|
|
|
/* **********
|
|
* get name
|
|
* **********/
|
|
static void fill_blob_alias_param(struct blob_buf *bb, const char *path, const char *data, const char *type, const char *alias)
|
|
{
|
|
if (!bb || !path || !data || !type || !alias)
|
|
return;
|
|
|
|
void *table = blobmsg_open_table(bb, NULL);
|
|
|
|
blobmsg_add_string(bb, "path", path);
|
|
blobmsg_add_string(bb, "data", data);
|
|
blobmsg_add_string(bb, "type", type);
|
|
|
|
void *array = blobmsg_open_array(bb, "output");
|
|
|
|
void *out_table = blobmsg_open_table(bb, NULL);
|
|
blobmsg_add_string(bb, "data", alias);
|
|
blobmsg_close_table(bb, out_table);
|
|
|
|
blobmsg_close_array(bb, array);
|
|
|
|
blobmsg_close_table(bb, table);
|
|
}
|
|
|
|
static int mobj_get_name(DMOBJECT_ARGS)
|
|
{
|
|
char *refparam = node->current_object;
|
|
char *perm = permission->val;
|
|
|
|
if (DM_STRCMP(node->current_object, ROOT_NODE) == 0 && DM_STRCMP(dmctx->in_value, "core") != 0)
|
|
return 0;
|
|
|
|
if (permission->get_permission != NULL)
|
|
perm = permission->get_permission(refparam, dmctx, data, instance);
|
|
|
|
fill_blob_param(&dmctx->bb, refparam, perm, "xsd:object", 0);
|
|
return 0;
|
|
}
|
|
|
|
static int mparam_get_name(DMPARAM_ARGS)
|
|
{
|
|
char *perm = leaf->permission->val;
|
|
char refparam[MAX_DM_PATH] = {0};
|
|
|
|
snprintf(refparam, sizeof(refparam), "%s%s", node->current_object, leaf->parameter);
|
|
|
|
if (leaf->permission->get_permission != NULL)
|
|
perm = leaf->permission->get_permission(refparam, dmctx, data, instance);
|
|
|
|
if (DM_LSTRCMP(leaf->parameter, "Alias") == 0) {
|
|
char *alias = dmstrdup("");
|
|
|
|
(leaf->getvalue)(refparam, dmctx, data, instance, &alias);
|
|
fill_blob_alias_param(&dmctx->bb, refparam, perm, DMT_TYPE[leaf->type], alias);
|
|
} else {
|
|
fill_blob_param(&dmctx->bb, refparam, perm, DMT_TYPE[leaf->type], 0);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int mobj_get_name_in_param(DMOBJECT_ARGS)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static int mparam_get_name_in_param(DMPARAM_ARGS)
|
|
{
|
|
char *perm = leaf->permission->val;
|
|
char refparam[MAX_DM_PATH] = {0};
|
|
|
|
snprintf(refparam, sizeof(refparam), "%s%s", node->current_object, leaf->parameter);
|
|
|
|
if (dmctx->iswildcard) {
|
|
if (dm_strcmp_wildcard(refparam, dmctx->in_param) != 0)
|
|
return FAULT_9005;
|
|
} else {
|
|
if (DM_STRCMP(refparam, dmctx->in_param) != 0)
|
|
return FAULT_9005;
|
|
}
|
|
|
|
dmctx->stop = (dmctx->iswildcard) ? 0 : 1;
|
|
|
|
if (dmctx->nextlevel == 1) {
|
|
dmctx->stop = 1;
|
|
return FAULT_9003;
|
|
}
|
|
|
|
if (leaf->permission->get_permission != NULL)
|
|
perm = leaf->permission->get_permission(refparam, dmctx, data, instance);
|
|
|
|
if (DM_LSTRCMP(leaf->parameter, "Alias") == 0) {
|
|
char *alias = dmstrdup("");
|
|
|
|
(leaf->getvalue)(refparam, dmctx, data, instance, &alias);
|
|
fill_blob_alias_param(&dmctx->bb, refparam, perm, DMT_TYPE[leaf->type], alias);
|
|
} else {
|
|
fill_blob_param(&dmctx->bb, refparam, perm, DMT_TYPE[leaf->type], 0);
|
|
}
|
|
|
|
dmctx->findparam = (dmctx->iswildcard) ? 1 : 0;
|
|
return 0;
|
|
|
|
}
|
|
|
|
static int mobj_get_name_in_obj(DMOBJECT_ARGS)
|
|
{
|
|
char *refparam = node->current_object;
|
|
char *perm = permission->val;
|
|
|
|
if (!node->matched)
|
|
return FAULT_9005;
|
|
|
|
if (DM_STRCMP(node->current_object, ROOT_NODE) == 0 && DM_STRCMP(dmctx->in_value, "core") != 0)
|
|
return 0;
|
|
|
|
if (dmctx->iswildcard) {
|
|
if (dmctx->nextlevel && dm_strcmp_wildcard(node->current_object, dmctx->in_param) == 0)
|
|
return 0;
|
|
} else {
|
|
if (dmctx->nextlevel && DM_STRCMP(node->current_object, dmctx->in_param) == 0)
|
|
return 0;
|
|
}
|
|
|
|
if (permission->get_permission != NULL)
|
|
perm = permission->get_permission(refparam, dmctx, data, instance);
|
|
|
|
fill_blob_param(&dmctx->bb, refparam, perm, "xsd:object", 0);
|
|
return 0;
|
|
}
|
|
|
|
static int mparam_get_name_in_obj(DMPARAM_ARGS)
|
|
{
|
|
char *perm = leaf->permission->val;
|
|
char refparam[MAX_DM_PATH] = {0};
|
|
|
|
snprintf(refparam, sizeof(refparam), "%s%s", node->current_object, leaf->parameter);
|
|
|
|
if (leaf->permission->get_permission != NULL)
|
|
perm = leaf->permission->get_permission(refparam, dmctx, data, instance);
|
|
|
|
if (DM_LSTRCMP(leaf->parameter, "Alias") == 0) {
|
|
char *alias = dmstrdup("");
|
|
|
|
(leaf->getvalue)(refparam, dmctx, data, instance, &alias);
|
|
fill_blob_alias_param(&dmctx->bb, refparam, perm, DMT_TYPE[leaf->type], alias);
|
|
} else {
|
|
fill_blob_param(&dmctx->bb, refparam, perm, DMT_TYPE[leaf->type], 0);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int dm_entry_get_name(struct dmctx *ctx)
|
|
{
|
|
DMOBJ *root = ctx->dm_entryobj;
|
|
DMNODE node = {.current_object = ""};
|
|
unsigned char findparam_check = 0;
|
|
unsigned int len = DM_STRLEN(ctx->in_param);
|
|
int err = 0;
|
|
|
|
if ((len > 2 && ctx->in_param[len - 1] == '.' && ctx->in_param[len - 2] == '*') ||
|
|
(ctx->in_param[0] == '.' && len == 1))
|
|
return FAULT_9005;
|
|
|
|
if (ctx->nextlevel == 0 && (ctx->in_param[0] == '\0' || rootcmp(ctx->in_param, root->obj) == 0)) {
|
|
ctx->inparam_isparam = 0;
|
|
ctx->findparam = 1;
|
|
ctx->stop = 0;
|
|
ctx->checkobj = NULL;
|
|
ctx->checkleaf = NULL;
|
|
ctx->method_obj = mobj_get_name;
|
|
ctx->method_param = mparam_get_name;
|
|
} else if (ctx->nextlevel && (ctx->in_param[0] == '\0')) {
|
|
ctx->inparam_isparam = 0;
|
|
ctx->findparam = 1;
|
|
ctx->stop = 0;
|
|
ctx->checkobj = plugin_obj_nextlevel_match;
|
|
ctx->checkleaf = plugin_leaf_nextlevel_match;
|
|
ctx->method_obj = mobj_get_name;
|
|
ctx->method_param = mparam_get_name;
|
|
ctx->in_param = dmstrdup("Device");
|
|
node.matched = 1;
|
|
findparam_check = 1;
|
|
} else if (*(ctx->in_param + len - 1) == '.') {
|
|
ctx->inparam_isparam = 0;
|
|
ctx->findparam = 0;
|
|
ctx->stop = 0;
|
|
if (ctx->iswildcard) {
|
|
ctx->checkobj = (ctx->nextlevel) ? plugin_obj_wildcard_nextlevel_match : plugin_obj_wildcard_match;
|
|
ctx->checkleaf = (ctx->nextlevel) ? plugin_leaf_wildcard_nextlevel_match : plugin_leaf_wildcard_match;
|
|
} else {
|
|
ctx->checkobj = (ctx->nextlevel) ? plugin_obj_nextlevel_match : plugin_obj_match;
|
|
ctx->checkleaf = (ctx->nextlevel) ? plugin_leaf_nextlevel_match : plugin_leaf_match;
|
|
}
|
|
ctx->method_obj = mobj_get_name_in_obj;
|
|
ctx->method_param = mparam_get_name_in_obj;
|
|
findparam_check = 1;
|
|
} else {
|
|
ctx->inparam_isparam = 1;
|
|
ctx->findparam = 0;
|
|
ctx->stop = 0;
|
|
ctx->checkobj = (ctx->iswildcard) ? plugin_obj_wildcard_match : plugin_obj_match;
|
|
ctx->checkleaf = (ctx->iswildcard) ? plugin_leaf_wildcard_match : plugin_leaf_match;
|
|
ctx->method_obj = mobj_get_name_in_param;
|
|
ctx->method_param = mparam_get_name_in_param;
|
|
findparam_check = (ctx->iswildcard) ? 1 : 0;
|
|
}
|
|
|
|
err = dm_browse(ctx, &node, root, NULL, NULL);
|
|
|
|
return (findparam_check && ctx->findparam) ? 0 : err;
|
|
}
|
|
|
|
/* ***********************
|
|
* get supported data model
|
|
* ***********************/
|
|
static int mobj_get_supported_dm(DMOBJECT_ARGS)
|
|
{
|
|
char *perm = permission ? permission->val : "0";
|
|
char *refparam = node->current_object;
|
|
|
|
if (node->matched && dmctx->isinfo) {
|
|
fill_blob_param(&dmctx->bb, refparam, perm, "xsd:object", 0);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int mparam_get_supported_dm(DMPARAM_ARGS)
|
|
{
|
|
char refparam[MAX_DM_PATH] = {0};
|
|
char *value = NULL;
|
|
|
|
snprintf(refparam, sizeof(refparam), "%s%s", node->current_object, leaf->parameter);
|
|
|
|
if (node->matched) {
|
|
if (leaf->type == DMT_EVENT) {
|
|
if (dmctx->isevent) {
|
|
if (leaf->getvalue)
|
|
(leaf->getvalue)(refparam, dmctx, data, instance, &value);
|
|
|
|
fill_blob_event(&dmctx->bb, refparam, DMT_TYPE[leaf->type], value);
|
|
}
|
|
|
|
} else if (leaf->type == DMT_COMMAND) {
|
|
if (dmctx->iscommand) {
|
|
|
|
if (leaf->getvalue)
|
|
(leaf->getvalue)(refparam, dmctx, data, instance, &value);
|
|
|
|
fill_blob_operate(&dmctx->bb, refparam, leaf->permission->val, DMT_TYPE[leaf->type], value);
|
|
}
|
|
} else {
|
|
fill_blob_param(&dmctx->bb, refparam, leaf->permission->val, DMT_TYPE[leaf->type], leaf->dm_flags);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int dm_entry_get_supported_dm(struct dmctx *ctx)
|
|
{
|
|
DMOBJ *root = ctx->dm_entryobj;
|
|
DMNODE node = {.current_object = ""};
|
|
size_t plen = DM_STRLEN(ctx->in_param);
|
|
int err = 0;
|
|
|
|
if (plen == 0 || ctx->in_param[plen - 1] != '.')
|
|
return FAULT_9005;
|
|
|
|
ctx->inparam_isparam = 0;
|
|
ctx->isgetschema = 1;
|
|
ctx->findparam = 1;
|
|
ctx->stop =0;
|
|
ctx->checkobj = plugin_obj_match;
|
|
ctx->checkleaf = NULL;
|
|
ctx->method_obj = mobj_get_supported_dm;
|
|
ctx->method_param = mparam_get_supported_dm;
|
|
|
|
err = dm_browse(ctx, &node, root, NULL, NULL);
|
|
|
|
return (ctx->findparam) ? 0 : err;
|
|
}
|
|
|
|
/* **************
|
|
* get_instances
|
|
* **************/
|
|
static int mobj_get_instances_in_obj(DMOBJECT_ARGS)
|
|
{
|
|
if (node->matched && node->is_instanceobj) {
|
|
char path[MAX_DM_PATH] = {0};
|
|
|
|
snprintf(path, sizeof(path), "%s", node->current_object);
|
|
|
|
int len = DM_STRLEN(path);
|
|
|
|
if (len) {
|
|
path[len - 1] = 0;
|
|
|
|
void *table = blobmsg_open_table(&dmctx->bb, NULL);
|
|
blobmsg_add_string(&dmctx->bb, "path", path);
|
|
blobmsg_close_table(&dmctx->bb, table);
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int mparam_get_instances_in_obj(DMPARAM_ARGS)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int dm_entry_get_instances(struct dmctx *ctx)
|
|
{
|
|
DMOBJ *root = ctx->dm_entryobj;
|
|
DMNODE node = { .current_object = "" };
|
|
size_t plen = DM_STRLEN(ctx->in_param);
|
|
int err = 0;
|
|
|
|
if (ctx->in_param[0] == 0)
|
|
ctx->in_param = dmstrdup(".");
|
|
|
|
if (ctx->in_param[plen - 1] != '.')
|
|
return FAULT_9005;
|
|
|
|
ctx->inparam_isparam = 0;
|
|
ctx->findparam = 0;
|
|
ctx->stop = 0;
|
|
ctx->checkobj = (ctx->iswildcard) ? plugin_obj_wildcard_match : plugin_obj_match;
|
|
ctx->checkleaf = (ctx->iswildcard) ? plugin_leaf_wildcard_match : plugin_leaf_match;
|
|
ctx->method_obj = mobj_get_instances_in_obj;
|
|
ctx->method_param = mparam_get_instances_in_obj;
|
|
|
|
err = dm_browse(ctx, &node, root, NULL, NULL);
|
|
|
|
return (ctx->findparam == 0) ? err : 0;
|
|
}
|
|
|
|
/* **************
|
|
* add object
|
|
* **************/
|
|
static int mobj_add_object(DMOBJECT_ARGS)
|
|
{
|
|
char *refparam = node->current_object;
|
|
char *perm = permission->val;
|
|
char *new_instance = NULL;
|
|
int fault = 0;
|
|
|
|
if (DM_STRCMP(refparam, dmctx->in_param) != 0)
|
|
return FAULT_9005;
|
|
|
|
if (node->is_instanceobj)
|
|
return FAULT_9005;
|
|
|
|
if (permission->get_permission != NULL)
|
|
perm = permission->get_permission(refparam, dmctx, data, instance);
|
|
|
|
if (perm[0] == '0' || addobj == NULL)
|
|
return FAULT_9005;
|
|
|
|
int max_inst = find_max_instance(dmctx, node);
|
|
fault = dmasprintf(&new_instance, "%d", max_inst);
|
|
if (fault)
|
|
return fault;
|
|
|
|
dmctx->stop = 1;
|
|
|
|
fault = (addobj)(refparam, dmctx, data, &new_instance);
|
|
if (fault)
|
|
return fault;
|
|
|
|
dmctx->addobj_instance = new_instance;
|
|
return 0;
|
|
}
|
|
|
|
static int mparam_add_object(DMPARAM_ARGS)
|
|
{
|
|
return FAULT_9005;
|
|
}
|
|
|
|
int dm_entry_add_object(struct dmctx *dmctx)
|
|
{
|
|
DMOBJ *root = dmctx->dm_entryobj;
|
|
DMNODE node = { .current_object = "" };
|
|
int err = 0;
|
|
|
|
if (dmctx->in_param == NULL || dmctx->in_param[0] == '\0' ||
|
|
(*(dmctx->in_param + DM_STRLEN(dmctx->in_param) - 1) != '.'))
|
|
return FAULT_9005;
|
|
|
|
dmctx->inparam_isparam = 0;
|
|
dmctx->stop = 0;
|
|
dmctx->checkobj = plugin_obj_match;
|
|
dmctx->checkleaf = plugin_leaf_onlyobj_match;
|
|
dmctx->method_obj = mobj_add_object;
|
|
dmctx->method_param = mparam_add_object;
|
|
|
|
err = dm_browse(dmctx, &node, root, NULL, NULL);
|
|
|
|
return (dmctx->stop) ? err : FAULT_9005;
|
|
}
|
|
|
|
/* **************
|
|
* del object
|
|
* **************/
|
|
static int delete_object_obj(DMOBJECT_ARGS)
|
|
{
|
|
char *refparam = node->current_object;
|
|
char *perm = permission->val;
|
|
|
|
if (DM_STRCMP(refparam, dmctx->in_param) != 0)
|
|
return FAULT_9005;
|
|
|
|
dmctx->stop = 1;
|
|
|
|
if (permission->get_permission != NULL)
|
|
perm = permission->get_permission(refparam, dmctx, data, instance);
|
|
|
|
if (perm[0] == '0' || delobj == NULL)
|
|
return FAULT_9005;
|
|
|
|
if (!node->is_instanceobj)
|
|
return FAULT_9005;
|
|
|
|
return (delobj)(refparam, dmctx, data, instance, DEL_INST);
|
|
}
|
|
|
|
static int delete_object_param(DMPARAM_ARGS)
|
|
{
|
|
return FAULT_9005;
|
|
}
|
|
|
|
int dm_entry_delete_object(struct dmctx *dmctx)
|
|
{
|
|
DMOBJ *root = dmctx->dm_entryobj;
|
|
DMNODE node = { .current_object = "" };
|
|
int err = 0;
|
|
|
|
if (dmctx->in_param == NULL || dmctx->in_param[0] == '\0' ||
|
|
(*(dmctx->in_param + DM_STRLEN(dmctx->in_param) - 1) != '.'))
|
|
return FAULT_9005;
|
|
|
|
dmctx->inparam_isparam = 0;
|
|
dmctx->stop = 0;
|
|
dmctx->checkobj = plugin_obj_match;
|
|
dmctx->checkleaf = plugin_leaf_onlyobj_match;
|
|
dmctx->method_obj = delete_object_obj;
|
|
dmctx->method_param = delete_object_param;
|
|
|
|
err = dm_browse(dmctx, &node, root, NULL, NULL);
|
|
|
|
return (dmctx->stop) ? err : FAULT_9005;
|
|
}
|
|
|
|
/* **************
|
|
* set value
|
|
* **************/
|
|
static int mobj_set_value(DMOBJECT_ARGS)
|
|
{
|
|
return FAULT_9005;
|
|
}
|
|
|
|
static int get_datatype(char *type)
|
|
{
|
|
if (DM_STRLEN(type) == 0)
|
|
return __DMT_INVALID;
|
|
|
|
if (strcmp(type, "int") == 0)
|
|
return DMT_INT;
|
|
|
|
if (strcmp(type, "long") == 0)
|
|
return DMT_LONG;
|
|
|
|
if (strcmp(type, "unsignedInt") == 0)
|
|
return DMT_UNINT;
|
|
|
|
if (strcmp(type, "unsignedLong") == 0)
|
|
return DMT_UNLONG;
|
|
|
|
if (strcmp(type, "decimal") == 0)
|
|
return DMT_STRING;
|
|
|
|
if (strcmp(type, "hexBinary") == 0)
|
|
return DMT_HEXBIN;
|
|
|
|
if (strcmp(type, "dateTime") == 0)
|
|
return DMT_TIME;
|
|
|
|
if (strcmp(type, "boolean") == 0)
|
|
return DMT_BOOL;
|
|
|
|
if (strcmp(type, "base64") == 0)
|
|
return DMT_BASE64;
|
|
|
|
if (strcmp(type, "string") == 0)
|
|
return DMT_STRING;
|
|
|
|
return __DMT_INVALID;
|
|
}
|
|
|
|
static int mparam_set_value(DMPARAM_ARGS)
|
|
{
|
|
char refparam[MAX_DM_PATH] = {0};
|
|
char param_value[2048] = {0};
|
|
char *value = dmstrdup("");
|
|
|
|
snprintf(refparam, MAX_DM_PATH, "%s%s", node->current_object, leaf->parameter);
|
|
if (DM_STRCMP(refparam, dmctx->in_param) != 0)
|
|
return FAULT_9005;
|
|
|
|
dmctx->stop = 1;
|
|
dmctx->setaction = VALUECHECK;
|
|
|
|
char *perm = leaf->permission->val;
|
|
if (leaf->permission->get_permission != NULL)
|
|
perm = leaf->permission->get_permission(refparam, dmctx, data, instance);
|
|
|
|
if (perm[0] == '0' || !leaf->setvalue)
|
|
return FAULT_9008;
|
|
|
|
// If type is not defined then bypass this check
|
|
if (DM_STRLEN(dmctx->in_type) != 0) {
|
|
int type = get_datatype(dmctx->in_type);
|
|
|
|
if (type != leaf->type) {
|
|
return FAULT_9006;
|
|
}
|
|
}
|
|
|
|
(leaf->getvalue)(refparam, dmctx, data, instance, &value);
|
|
|
|
snprintf(param_value, sizeof(param_value), "%s", dmctx->in_value);
|
|
|
|
if (leaf->type == DMT_BOOL) {
|
|
bool val = false;
|
|
int res = 0;
|
|
|
|
res = string_to_bool(dmctx->in_value, &val);
|
|
if (res == 0 && dmuci_string_to_boolean(value) == val) {
|
|
BBF_DEBUG("Requested value (%s) is same as current value (%s).", dmctx->in_value, value);
|
|
return 0;
|
|
}
|
|
} else if (leaf->dm_flags & DM_FLAG_REFERENCE) {
|
|
if (is_same_reference_path(value, dmctx->in_value, param_value, sizeof(param_value))) {
|
|
BBF_DEBUG("Requested value (%s) is same as current value (%s)..", dmctx->in_value, value);
|
|
return 0;
|
|
}
|
|
} else {
|
|
int len = DM_STRLEN(param_value);
|
|
|
|
// Remove linker value from the provided value if it is not marked as reference value 'Device.XXX.=>XX##'
|
|
if (len > 7 && DM_STRNCMP(param_value, ROOT_NODE, strlen(ROOT_NODE)) == 0 &&
|
|
param_value[len - 1] == '#' && param_value[len - 2] == '#') {
|
|
char *p = DM_STRSTR(param_value, "=>");
|
|
if (p) *p = 0;
|
|
}
|
|
|
|
if (DM_STRCMP(value, param_value) == 0) {
|
|
BBF_DEBUG("Requested value (%s) is same as current value (%s)...", param_value, value);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
char *param_val = dmstrdup(param_value);
|
|
|
|
int fault = (leaf->setvalue)(refparam, dmctx, data, instance, param_value, dmctx->setaction);
|
|
if (fault)
|
|
return fault;
|
|
|
|
dmctx->setaction = VALUESET;
|
|
|
|
return (leaf->setvalue)(refparam, dmctx, data, instance, param_val, dmctx->setaction);
|
|
}
|
|
|
|
int dm_entry_set_value(struct dmctx *dmctx)
|
|
{
|
|
DMOBJ *root = dmctx->dm_entryobj;
|
|
DMNODE node = { .current_object = "" };
|
|
int err = 0;
|
|
|
|
if (dmctx->in_param == NULL || dmctx->in_param[0] == '\0' ||
|
|
(*(dmctx->in_param + DM_STRLEN(dmctx->in_param) - 1) == '.'))
|
|
return FAULT_9005;
|
|
|
|
dmctx->inparam_isparam = 1;
|
|
dmctx->stop = 0;
|
|
dmctx->checkobj = plugin_obj_match;
|
|
dmctx->checkleaf = plugin_leaf_match;
|
|
dmctx->method_obj = mobj_set_value;
|
|
dmctx->method_param = mparam_set_value;
|
|
|
|
err = dm_browse(dmctx, &node, root, NULL, NULL);
|
|
|
|
return (dmctx->stop) ? err : FAULT_9005;
|
|
}
|
|
|
|
/******************
|
|
* get reference param
|
|
*****************/
|
|
static int get_key_check_obj(DMOBJECT_ARGS)
|
|
{
|
|
return FAULT_9005;
|
|
}
|
|
|
|
static int get_key_check_param(DMPARAM_ARGS)
|
|
{
|
|
char full_param[MAX_DM_PATH] = {0};
|
|
char *value = dmstrdup("");
|
|
|
|
snprintf(full_param, sizeof(full_param), "%s%s", node->current_object, leaf->parameter);
|
|
|
|
if (dm_strcmp_wildcard(dmctx->in_param, full_param) != 0)
|
|
return FAULT_9005;
|
|
|
|
(leaf->getvalue)(full_param, dmctx, data, instance, &value);
|
|
|
|
if (DM_STRLEN(value) && DM_STRCMP(value, dmctx->linker) == 0) {
|
|
if (node->current_object[DM_STRLEN(node->current_object) - 1] == '.')
|
|
node->current_object[DM_STRLEN(node->current_object) - 1] = 0;
|
|
dmctx->linker_param = dmstrdup(node->current_object);
|
|
dmctx->stop = true;
|
|
return 0;
|
|
}
|
|
|
|
return FAULT_9005;
|
|
}
|
|
|
|
int dm_entry_get_reference_param(struct dmctx *dmctx)
|
|
{
|
|
int err = 0;
|
|
DMOBJ *root = dmctx->dm_entryobj;
|
|
DMNODE node = { .current_object = "" };
|
|
|
|
dmctx->checkobj = plugin_obj_wildcard_match;
|
|
dmctx->checkleaf = plugin_leaf_wildcard_match;
|
|
dmctx->method_obj = get_key_check_obj;
|
|
dmctx->method_param = get_key_check_param;
|
|
|
|
err = dm_browse(dmctx, &node, root, NULL, NULL);
|
|
|
|
return (dmctx->stop) ? err : FAULT_9005;
|
|
}
|
|
|
|
/******************
|
|
* get reference value
|
|
*****************/
|
|
static int get_reference_value_check_obj(DMOBJECT_ARGS)
|
|
{
|
|
if (DM_STRCMP(node->current_object, dmctx->in_param) == 0) {
|
|
|
|
if (!data || !instance)
|
|
return FAULT_9005;
|
|
|
|
struct dm_leaf_s *leaf = node->obj->leaf;
|
|
if (!leaf)
|
|
return FAULT_9005;
|
|
|
|
for (; (leaf && leaf->parameter); leaf++) {
|
|
|
|
if (leaf->dm_flags & DM_FLAG_LINKER) {
|
|
char full_param[MAX_DM_PATH] = {0};
|
|
char *link_val = NULL;
|
|
|
|
snprintf(full_param, sizeof(full_param), "%s%s", node->current_object, leaf->parameter);
|
|
|
|
(leaf->getvalue)(full_param, dmctx, data, instance, &link_val);
|
|
|
|
dmctx->linker = link_val ? dmstrdup(link_val) : "";
|
|
dmctx->stop = true;
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
return FAULT_9005;
|
|
}
|
|
|
|
static int get_reference_value_check_param(DMPARAM_ARGS)
|
|
{
|
|
return FAULT_9005;
|
|
}
|
|
|
|
int dm_entry_get_reference_value(struct dmctx *dmctx)
|
|
{
|
|
int err = 0;
|
|
DMOBJ *root = dmctx->dm_entryobj;
|
|
DMNODE node = { .current_object = "" };
|
|
|
|
dmctx->method_obj = get_reference_value_check_obj;
|
|
dmctx->method_param = get_reference_value_check_param;
|
|
dmctx->checkobj = plugin_obj_match;
|
|
dmctx->checkleaf = plugin_leaf_match;
|
|
|
|
err = dm_browse(dmctx, &node, root, NULL, NULL);
|
|
|
|
return (dmctx->stop) ? err : FAULT_9005;
|
|
}
|
|
|
|
/******************
|
|
* object exists
|
|
*****************/
|
|
static int object_exists_check_obj(DMOBJECT_ARGS)
|
|
{
|
|
if (DM_STRCMP(node->current_object, dmctx->in_param) == 0) {
|
|
dmctx->match = true;
|
|
dmctx->stop = true;
|
|
return 0;
|
|
}
|
|
|
|
return FAULT_9005;
|
|
}
|
|
|
|
static int object_exists_check_param(DMPARAM_ARGS)
|
|
{
|
|
return FAULT_9005;
|
|
}
|
|
|
|
int dm_entry_object_exists(struct dmctx *dmctx)
|
|
{
|
|
int err = 0;
|
|
DMOBJ *root = dmctx->dm_entryobj;
|
|
DMNODE node = { .current_object = "" };
|
|
|
|
dmctx->method_obj = object_exists_check_obj;
|
|
dmctx->method_param = object_exists_check_param;
|
|
dmctx->checkobj = plugin_obj_match;
|
|
dmctx->checkleaf = plugin_leaf_match;
|
|
|
|
err = dm_browse(dmctx, &node, root, NULL, NULL);
|
|
|
|
return (dmctx->stop) ? err : FAULT_9005;
|
|
}
|
|
|
|
/* **************
|
|
* Operate
|
|
* **************/
|
|
static int mobj_operate(DMOBJECT_ARGS)
|
|
{
|
|
return USP_FAULT_INVALID_PATH;
|
|
}
|
|
|
|
static int mparam_operate(DMPARAM_ARGS)
|
|
{
|
|
char full_param[MAX_DM_PATH];
|
|
|
|
snprintf(full_param, MAX_DM_PATH, "%s%s", node->current_object, leaf->parameter);
|
|
if (DM_STRCMP(full_param, dmctx->in_param) != 0)
|
|
return USP_FAULT_INVALID_PATH;
|
|
|
|
dmctx->stop = 1;
|
|
|
|
if (!leaf->setvalue)
|
|
return USP_FAULT_COMMAND_FAILURE;
|
|
|
|
json_object *j_input = (dmctx->in_value) ? json_tokener_parse(dmctx->in_value) : NULL;
|
|
int fault = (leaf->setvalue)(full_param, dmctx, data, instance, (char *)j_input, 0);
|
|
json_object_put(j_input);
|
|
|
|
return fault;
|
|
}
|
|
|
|
int dm_entry_operate(struct dmctx *dmctx)
|
|
{
|
|
DMOBJ *root = dmctx->dm_entryobj;
|
|
DMNODE node = { .current_object = "" };
|
|
int err = 0;
|
|
|
|
if (dmctx->in_param == NULL || dmctx->in_param[0] == '\0' || (*(dmctx->in_param + DM_STRLEN(dmctx->in_param) - 1) != ')'))
|
|
return USP_FAULT_INVALID_PATH;
|
|
|
|
dmctx->iscommand = 1;
|
|
dmctx->inparam_isparam = 1;
|
|
dmctx->stop = 0;
|
|
dmctx->checkobj = plugin_obj_match;
|
|
dmctx->checkleaf = plugin_leaf_match;
|
|
dmctx->method_obj = mobj_operate;
|
|
dmctx->method_param = mparam_operate;
|
|
|
|
err = dm_browse(dmctx, &node, root, NULL, NULL);
|
|
|
|
return (dmctx->stop) ? err : USP_FAULT_INVALID_PATH;
|
|
}
|
|
|
|
/* **************
|
|
* Event
|
|
* **************/
|
|
static int mobj_event(DMOBJECT_ARGS)
|
|
{
|
|
return USP_FAULT_INVALID_PATH;
|
|
}
|
|
|
|
static int mparam_event(DMPARAM_ARGS)
|
|
{
|
|
char full_param[MAX_DM_PATH];
|
|
int fault = 0;
|
|
|
|
snprintf(full_param, MAX_DM_PATH, "%s%s", node->current_object, leaf->parameter);
|
|
|
|
if (dmctx->iswildcard) {
|
|
if (dm_strcmp_wildcard(dmctx->in_param, full_param) != 0)
|
|
return USP_FAULT_INVALID_PATH;
|
|
} else {
|
|
if (DM_STRCMP(dmctx->in_param, full_param) != 0)
|
|
return USP_FAULT_INVALID_PATH;
|
|
}
|
|
|
|
if (!leaf->setvalue) {
|
|
dmctx->stop = 1;
|
|
return USP_FAULT_INTERNAL_ERROR;
|
|
}
|
|
|
|
json_object *j_input = (dmctx->in_value) ? json_tokener_parse(dmctx->in_value) : NULL;
|
|
|
|
fault = (leaf->setvalue)(full_param, dmctx, data, instance, (char *)j_input, EVENT_CHECK);
|
|
if (fault)
|
|
goto end;
|
|
|
|
dmctx->stop = 1;
|
|
|
|
blobmsg_add_string(&dmctx->bb, "name", full_param);
|
|
void *array = blobmsg_open_array(&dmctx->bb, "input");
|
|
|
|
fault = (leaf->setvalue)(full_param, dmctx, data, instance, (char *)j_input, EVENT_RUN);
|
|
|
|
blobmsg_close_array(&dmctx->bb, array);
|
|
|
|
end:
|
|
json_object_put(j_input);
|
|
return fault;
|
|
}
|
|
|
|
int dm_entry_event(struct dmctx *dmctx)
|
|
{
|
|
DMOBJ *root = dmctx->dm_entryobj;
|
|
DMNODE node = { .current_object = "" };
|
|
int err = 0;
|
|
|
|
if (dmctx->in_param == NULL || dmctx->in_param[0] == '\0' || (*(dmctx->in_param + DM_STRLEN(dmctx->in_param) - 1) != '!'))
|
|
return USP_FAULT_INVALID_PATH;
|
|
|
|
dmctx->isevent = 1;
|
|
dmctx->inparam_isparam = 1;
|
|
dmctx->stop = 0;
|
|
dmctx->checkobj = (dmctx->iswildcard) ? plugin_obj_wildcard_match : plugin_obj_match;
|
|
dmctx->checkleaf = (dmctx->iswildcard) ? plugin_leaf_wildcard_match : plugin_leaf_match;
|
|
dmctx->method_obj = mobj_event;
|
|
dmctx->method_param = mparam_event;
|
|
|
|
err = dm_browse(dmctx, &node, root, NULL, NULL);
|
|
|
|
return (dmctx->stop) ? err : USP_FAULT_INVALID_PATH;
|
|
}
|