mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
857 lines
36 KiB
C
857 lines
36 KiB
C
/*
|
||
* dmoperate.c: Operate handler for uspd
|
||
*
|
||
* Copyright (C) 2019 iopsys Software Solutions AB. All rights reserved.
|
||
*
|
||
* Author: Vivek Dutta <vivek.dutta@iopsys.eu>
|
||
* Author: Yashvardhan <y.yashvardhan@iopsys.eu>
|
||
* Author: Amin Ben Ramdhane <amin.benramdhane@pivasoftware.com>
|
||
*
|
||
* This program is free software; you can redistribute it and/or
|
||
* modify it under the terms of the GNU General Public License
|
||
* version 2 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., 51 Franklin St, Fifth Floor, Boston, MA
|
||
* 02110-1301 USA
|
||
*/
|
||
|
||
#include <stdio.h>
|
||
#include <stdlib.h>
|
||
#include <stdbool.h>
|
||
#include <regex.h>
|
||
#include "dmcwmp.h"
|
||
#include "dmubus.h"
|
||
#include "dmuci.h"
|
||
#include "dmjson.h"
|
||
#include "dmentry.h"
|
||
#include "dmcommon.h"
|
||
#include "dmoperate.h"
|
||
#include "dmdiagnostics.h"
|
||
|
||
#define GLOB_EXPR "[=><]+"
|
||
|
||
bool match(const char *string, const char *pattern)
|
||
{
|
||
regex_t re;
|
||
if (regcomp(&re, pattern, REG_EXTENDED) != 0) return 0;
|
||
int status = regexec(&re, string, 0, NULL, 0);
|
||
regfree(&re);
|
||
if (status != 0) return false;
|
||
return true;
|
||
}
|
||
|
||
bool is_str_eq(const char *s1, const char *s2)
|
||
{
|
||
if(0==strcmp(s1, s2))
|
||
return true;
|
||
|
||
return false;
|
||
}
|
||
|
||
static void cwmp_init(struct dmctx *dm_ctx, char *path)
|
||
{
|
||
char *uci_amd = NULL, *uci_instance = NULL;
|
||
int amd = AMD_2, instance = INSTANCE_MODE_ALIAS;
|
||
|
||
if(match(path, "[[]+")) {
|
||
if(!match(path, GLOB_EXPR)) {
|
||
amd = AMD_5;
|
||
}
|
||
} else {
|
||
dmuci_get_option_value_string("cwmp", "cpe", "amd_version", &uci_amd);
|
||
if(uci_amd) {
|
||
amd = atoi(uci_amd);
|
||
dmfree(uci_amd);
|
||
}
|
||
dmuci_get_option_value_string("cwmp", "cpe", "instance_mode", &uci_instance);
|
||
if(uci_instance) {
|
||
if(!is_str_eq(uci_instance, "InstanceAlias"))
|
||
instance = INSTANCE_MODE_NUMBER;
|
||
dmfree(uci_instance);
|
||
}
|
||
}
|
||
dm_ctx_init(dm_ctx, DM_CWMP, amd, instance);
|
||
}
|
||
|
||
static void cwmp_cleanup(struct dmctx *dm_ctx)
|
||
{
|
||
dm_ctx_clean(dm_ctx);
|
||
}
|
||
|
||
static bool cwmp_get(int operation, char *path, struct dmctx *dm_ctx)
|
||
{
|
||
int fault = 0;
|
||
|
||
switch(operation) {
|
||
case CMD_GET_NAME:
|
||
fault = dm_entry_param_method(dm_ctx, CMD_GET_NAME, path, "true", NULL);
|
||
break;
|
||
case CMD_GET_VALUE:
|
||
fault = dm_entry_param_method(dm_ctx, CMD_GET_VALUE, path, NULL, NULL);
|
||
break;
|
||
default:
|
||
return false;
|
||
}
|
||
|
||
if (dm_ctx->list_fault_param.next != &dm_ctx->list_fault_param) {
|
||
return false;
|
||
}
|
||
if (fault) {
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
|
||
static bool cwmp_set_value(char *path, char *value)
|
||
{
|
||
int fault = 0, res;
|
||
struct dmctx dm_ctx = {0};
|
||
struct dmctx *p_dmctx = &dm_ctx;
|
||
|
||
cwmp_init(&dm_ctx, path);
|
||
|
||
fault = dm_entry_param_method(&dm_ctx, CMD_SET_VALUE, path, value, NULL);
|
||
|
||
if(!fault) {
|
||
fault = dm_entry_apply(&dm_ctx, CMD_SET_VALUE, "", NULL);
|
||
}
|
||
|
||
if (p_dmctx->list_fault_param.next != &p_dmctx->list_fault_param) {
|
||
res = FAIL;
|
||
}
|
||
|
||
if (fault)
|
||
res = FAIL;
|
||
else
|
||
res = SUCCESS;
|
||
|
||
cwmp_cleanup(&dm_ctx);
|
||
return res;
|
||
}
|
||
|
||
static char *cwmp_get_value_by_id(char *id)
|
||
{
|
||
struct dmctx dm_ctx = {0};
|
||
struct dm_parameter *n;
|
||
char *value = NULL;
|
||
|
||
cwmp_init(&dm_ctx, id);
|
||
if(cwmp_get(CMD_GET_VALUE, id, &dm_ctx)) {
|
||
list_for_each_entry(n, &dm_ctx.list_parameter, list) {
|
||
value = strdup(n->data);
|
||
break;
|
||
}
|
||
}
|
||
cwmp_cleanup(&dm_ctx);
|
||
return value;
|
||
}
|
||
|
||
static char *get_param_val_from_op_cmd(char *op_cmd, const char *param)
|
||
{
|
||
char *val = NULL;
|
||
char node[256] = {'\0'};
|
||
|
||
// Trim action from operation command
|
||
// For eg: trim Reset from Device.IP.Interface.*.Reset
|
||
char *ret = strrchr(op_cmd, '.');
|
||
strncpy(node, op_cmd, ret - op_cmd +1);
|
||
|
||
// Append param name to the trimmed path
|
||
strcat(node, param);
|
||
|
||
// Get parameter value
|
||
val = cwmp_get_value_by_id(node);
|
||
return val;
|
||
}
|
||
|
||
// Operate function definitions
|
||
static opr_ret_t reboot_device(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
if(0 == dmubus_call_set(SYSTEM_UBUS_PATH, "reboot", UBUS_ARGS{}, 0))
|
||
return SUCCESS;
|
||
else
|
||
return FAIL;
|
||
}
|
||
|
||
static opr_ret_t factory_reset(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
if(0 == dmcmd_no_wait("/sbin/defaultreset", 0))
|
||
return SUCCESS;
|
||
else
|
||
return FAIL;
|
||
}
|
||
|
||
static opr_ret_t network_interface_reset(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
char cmd[NAME_MAX] = NETWORK_INTERFACE_UBUS_PATH;
|
||
bool status = false;
|
||
|
||
snprintf(cmd + strlen(cmd), NAME_MAX - strlen(cmd), "%s", ".");
|
||
char *zone = NULL;
|
||
zone = get_param_val_from_op_cmd(path, "Name");
|
||
if(zone) {
|
||
strcat(cmd, zone);
|
||
free(zone);
|
||
} else {
|
||
return FAIL;
|
||
}
|
||
if(0 == dmubus_call_set(cmd, "down", UBUS_ARGS{}, 0))
|
||
status = true;
|
||
|
||
if(0 == dmubus_call_set(cmd, "up", UBUS_ARGS{}, 0))
|
||
status &= true;
|
||
|
||
if(status)
|
||
return SUCCESS;
|
||
else
|
||
return FAIL;
|
||
}
|
||
|
||
static opr_ret_t wireless_reset(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
if(0 == dmcmd_no_wait("/sbin/wifi", 2, "reload", "&"))
|
||
return SUCCESS;
|
||
else
|
||
return FAIL;
|
||
}
|
||
|
||
struct wifi_security_params reset_params[] = {
|
||
{"", "ModeEnabled", ""},
|
||
{"", "PreSharedKey", ""},
|
||
{"", "KeyPassphrase", ""}
|
||
};
|
||
|
||
static opr_ret_t ap_security_reset(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
char *wpakey = NULL;
|
||
char node[MAXNAMLEN] = {'\0'};
|
||
int i, len = 0;
|
||
|
||
char *ret = strrchr(path, '.');
|
||
strncpy(node, path, ret - path +1);
|
||
|
||
len = ARRAY_SIZE(reset_params);
|
||
|
||
for (i = 0; i < len; i++) {
|
||
strncpy(reset_params[i].node, node, MAXNAMLEN);
|
||
strcat(reset_params[i].node, reset_params[i].param);
|
||
}
|
||
const char *mode_enabled = "WPA2-Personal";
|
||
|
||
// Default mode - WPA2-Personal
|
||
strncpy(reset_params[0].value, mode_enabled, MAXNAMLEN);
|
||
|
||
// Get Default wpakey
|
||
db_get_value_string("hw", "board", "wpaKey", &wpakey);
|
||
|
||
// PreSharedKey and KeyPassphrase are kept same
|
||
strncpy(reset_params[1].value, wpakey, MAXNAMLEN);
|
||
strncpy(reset_params[2].value, wpakey, MAXNAMLEN);
|
||
|
||
for (i = 0; i < len; i++) {
|
||
cwmp_set_value(reset_params[i].node, reset_params[i].value);
|
||
}
|
||
return SUCCESS;
|
||
}
|
||
|
||
static opr_ret_t dhcp_client_renew(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
if(SUCCESS == cwmp_set_value(path, "true"))
|
||
return SUCCESS;
|
||
else
|
||
return FAIL;
|
||
}
|
||
|
||
static opr_ret_t vendor_conf_backup(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
struct file_server fserver = {0};
|
||
json_object *json_res = NULL;
|
||
char *vcf_name = NULL;
|
||
|
||
vcf_name = get_param_val_from_op_cmd(path, "Name");
|
||
if (!vcf_name)
|
||
return FAIL;
|
||
|
||
json_res = json_tokener_parse((const char *)input);
|
||
fserver.url = dmjson_get_value(json_res, 1, "URL");
|
||
if(fserver.url[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
|
||
fserver.user = dmjson_get_value(json_res, 1, "Username");
|
||
if(fserver.user[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
|
||
fserver.pass = dmjson_get_value(json_res, 1, "Password");
|
||
if(fserver.pass[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
|
||
dmcmd("/bin/sh", 7, ICWMP_SCRIPT, "upload", fserver.url, VCF_FILE_TYPE, fserver.user, fserver.pass, vcf_name);
|
||
free(vcf_name);
|
||
|
||
return SUCCESS;
|
||
}
|
||
|
||
static opr_ret_t vendor_conf_restore(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
struct file_server fserver = {0};
|
||
json_object *json_res = NULL;
|
||
char *file_size = NULL;
|
||
|
||
json_res = json_tokener_parse((const char *)input);
|
||
fserver.url = dmjson_get_value(json_res, 1, "URL");
|
||
if(fserver.url[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
|
||
fserver.user = dmjson_get_value(json_res, 1, "Username");
|
||
if(fserver.user[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
|
||
fserver.pass = dmjson_get_value(json_res, 1, "Password");
|
||
if(fserver.pass[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
|
||
file_size = dmjson_get_value(json_res, 1, "FileSize");
|
||
|
||
dmcmd("/bin/sh", 7, ICWMP_SCRIPT, "download", fserver.url, file_size, VCF_FILE_TYPE, fserver.user, fserver.pass);
|
||
|
||
if (0 == dmcmd_no_wait("/bin/sh", 4, ICWMP_SCRIPT, "apply", "download", VCF_FILE_TYPE))
|
||
return SUCCESS;
|
||
else
|
||
return FAIL;
|
||
}
|
||
|
||
static void fill_wireless_scan_results(struct dmctx *dmctx, char *radio)
|
||
{
|
||
json_object *res, *obj;
|
||
struct neighboring_wiFi_diagnostic neighboring = {0};
|
||
char *ssid, *bssid, *channel, *frequency, *signal_stregth, *noise;
|
||
|
||
dmubus_call(ROUTER_WIRELESS_UBUS_PATH, "scanresults", UBUS_ARGS{{"radio", radio, String}}, 1, &res);
|
||
|
||
if(!json_object_object_get_ex(res,"access_points", &obj)) {
|
||
return;
|
||
}
|
||
|
||
uint8_t len = json_object_array_length(obj);
|
||
for (uint8_t j = 0; j < len; j++ ) {
|
||
json_object *array_obj = json_object_array_get_idx(obj, j);
|
||
neighboring.ssid = dmjson_get_value(array_obj, 1, "ssid");
|
||
neighboring.bssid = dmjson_get_value(array_obj, 1, "bssid");
|
||
neighboring.channel = dmjson_get_value(array_obj, 1, "channel");
|
||
neighboring.frequency = dmjson_get_value(array_obj, 1, "frequency");
|
||
neighboring.signal_strength = dmjson_get_value(array_obj, 1, "rssi");
|
||
neighboring.noise = dmjson_get_value(array_obj, 1, "snr");
|
||
|
||
dmasprintf(&ssid, "Result.%d.SSID", j+1);
|
||
dmasprintf(&bssid, "Result.%d.BSSID", j+1);
|
||
dmasprintf(&channel, "Result.%d.Channel", j+1);
|
||
dmasprintf(&frequency, "Result.%d.OperatingFrequencyBand", j+1);
|
||
dmasprintf(&signal_stregth, "Result.%d.SignalStrength", j+1);
|
||
dmasprintf(&noise, "Result.%d.Noise", j+1);
|
||
|
||
add_list_paramameter(dmctx, ssid, neighboring.ssid, "string", NULL, 0);
|
||
add_list_paramameter(dmctx, bssid, neighboring.bssid, "string", NULL, 0);
|
||
add_list_paramameter(dmctx, channel, neighboring.channel, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, frequency, neighboring.frequency, "string", NULL, 0);
|
||
add_list_paramameter(dmctx, signal_stregth, neighboring.signal_strength, "int", NULL, 0);
|
||
add_list_paramameter(dmctx, noise, neighboring.noise, "int", NULL, 0);
|
||
}
|
||
}
|
||
|
||
static opr_ret_t fetch_neighboring_wifi_diagnostic(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
json_object *res;
|
||
|
||
dmubus_call(ROUTER_WIRELESS_UBUS_PATH, "radios", UBUS_ARGS{}, 0, &res);
|
||
json_object_object_foreach(res, key, val) {
|
||
fill_wireless_scan_results(dmctx, key);
|
||
}
|
||
|
||
return SUCCESS;
|
||
}
|
||
|
||
static opr_ret_t ip_diagnostics_ipping(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
json_object *json_res = NULL;
|
||
struct ipping_diagnostics ipping = {0};
|
||
|
||
json_res = json_tokener_parse((const char *)input);
|
||
ipping.host = dmjson_get_value(json_res, 1, "Host");
|
||
if(ipping.host[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
ipping.interface = dmjson_get_value(json_res, 1, "Interface");
|
||
ipping.proto = dmjson_get_value(json_res, 1, "ProtocolVersion");
|
||
ipping.nbofrepetition = dmjson_get_value(json_res, 1, "NumberOfRepetitions");
|
||
ipping.timeout = dmjson_get_value(json_res, 1, "Timeout");
|
||
ipping.datablocksize = dmjson_get_value(json_res, 1, "DataBlockSize");
|
||
ipping.dscp = dmjson_get_value(json_res, 1, "DSCP");
|
||
|
||
set_param_diagnostics("ippingdiagnostic", "Host", ipping.host);
|
||
set_param_diagnostics("ippingdiagnostic", "interface", ipping.interface);
|
||
set_param_diagnostics("ippingdiagnostic", "ProtocolVersion", ipping.proto);
|
||
set_param_diagnostics("ippingdiagnostic", "NumberOfRepetitions", ipping.nbofrepetition);
|
||
set_param_diagnostics("ippingdiagnostic", "Timeout", ipping.timeout);
|
||
set_param_diagnostics("ippingdiagnostic", "DataBlockSize", ipping.datablocksize);
|
||
set_param_diagnostics("ippingdiagnostic", "DSCP", ipping.dscp);
|
||
|
||
//Free uci_varstate_ctx
|
||
end_uci_varstate_ctx();
|
||
|
||
dmcmd("/bin/sh", 3, IPPING_PATH, "run", "usp");
|
||
|
||
//Allocate uci_varstate_ctx
|
||
init_uci_varstate_ctx();
|
||
|
||
ipping.success_count = get_param_diagnostics("ippingdiagnostic", "SuccessCount");
|
||
ipping.failure_count = get_param_diagnostics("ippingdiagnostic", "FailureCount");
|
||
ipping.average_response_time = get_param_diagnostics("ippingdiagnostic", "AverageResponseTime");
|
||
ipping.minimum_response_time = get_param_diagnostics("ippingdiagnostic", "MinimumResponseTime");
|
||
ipping.maximum_response_time = get_param_diagnostics("ippingdiagnostic", "MaximumResponseTime");
|
||
ipping.average_response_time_detailed = get_param_diagnostics("ippingdiagnostic", "AverageResponseTimeDetailed");
|
||
ipping.minimum_response_time_detailed = get_param_diagnostics("ippingdiagnostic", "MinimumResponseTimeDetailed");
|
||
ipping.maximum_response_time_detailed = get_param_diagnostics("ippingdiagnostic", "MaximumResponseTimeDetailed");
|
||
|
||
char *param_success_count = dmstrdup("SuccessCount");
|
||
char *param_failure_count = dmstrdup("FailureCount");
|
||
char *param_average_response_time = dmstrdup("AverageResponseTime");
|
||
char *param_minimum_response_time = dmstrdup("MinimumResponseTime");
|
||
char *param_maximum_response_time = dmstrdup("MaximumResponseTime");
|
||
char *param_average_response_time_detailed = dmstrdup("AverageResponseTimeDetailed");
|
||
char *param_minimum_response_time_detailed = dmstrdup("MinimumResponseTimeDetailed");
|
||
char *param_maximum_response_time_detailed = dmstrdup("MaximumResponseTimeDetailed");
|
||
|
||
add_list_paramameter(dmctx, param_success_count, ipping.success_count, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_failure_count, ipping.failure_count, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_average_response_time, ipping.average_response_time, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_minimum_response_time, ipping.minimum_response_time, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_maximum_response_time, ipping.maximum_response_time, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_average_response_time_detailed, ipping.average_response_time_detailed, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_minimum_response_time_detailed, ipping.minimum_response_time_detailed, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_maximum_response_time_detailed, ipping.maximum_response_time_detailed, "unsignedInt", NULL, 0);
|
||
|
||
return SUCCESS;
|
||
}
|
||
|
||
static opr_ret_t ip_diagnostics_traceroute(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
json_object *json_res = NULL;
|
||
struct traceroute_diagnostics traceroute = {0};
|
||
struct uci_section *s = NULL;
|
||
char *host, *host_address, *errorcode, *rttimes;
|
||
int i = 1;
|
||
|
||
json_res = json_tokener_parse((const char *)input);
|
||
traceroute.host = dmjson_get_value(json_res, 1, "Host");
|
||
if(traceroute.host[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
traceroute.interface = dmjson_get_value(json_res, 1, "Interface");
|
||
traceroute.proto = dmjson_get_value(json_res, 1, "ProtocolVersion");
|
||
traceroute.nboftries = dmjson_get_value(json_res, 1, "NumberOfTries");
|
||
traceroute.timeout = dmjson_get_value(json_res, 1, "Timeout");
|
||
traceroute.datablocksize = dmjson_get_value(json_res, 1, "DataBlockSize");
|
||
traceroute.dscp = dmjson_get_value(json_res, 1, "DSCP");
|
||
traceroute.maxhops = dmjson_get_value(json_res, 1, "MaxHopCount");
|
||
|
||
set_param_diagnostics("traceroutediagnostic", "Host", traceroute.host);
|
||
set_param_diagnostics("traceroutediagnostic", "interface", traceroute.interface);
|
||
set_param_diagnostics("traceroutediagnostic", "ProtocolVersion", traceroute.proto);
|
||
set_param_diagnostics("traceroutediagnostic", "NumberOfTries", traceroute.nboftries);
|
||
set_param_diagnostics("traceroutediagnostic", "Timeout", traceroute.timeout);
|
||
set_param_diagnostics("traceroutediagnostic", "DataBlockSize", traceroute.datablocksize);
|
||
set_param_diagnostics("traceroutediagnostic", "DSCP", traceroute.dscp);
|
||
set_param_diagnostics("traceroutediagnostic", "MaxHops", traceroute.maxhops);
|
||
|
||
//Free uci_varstate_ctx
|
||
end_uci_varstate_ctx();
|
||
|
||
dmcmd("/bin/sh", 3, TRACEROUTE_PATH, "run", "usp");
|
||
|
||
//Allocate uci_varstate_ctx
|
||
init_uci_varstate_ctx();
|
||
|
||
traceroute.response_time = get_param_diagnostics("traceroutediagnostic", "ResponseTime");
|
||
char *param_response_time = dmstrdup("ResponseTime");
|
||
add_list_paramameter(dmctx, param_response_time, traceroute.response_time, "unsignedInt", NULL, 0);
|
||
|
||
uci_foreach_sections_state("cwmp", "RouteHops", s)
|
||
{
|
||
dmasprintf(&host, "RouteHops.%d.Host", i);
|
||
dmasprintf(&host_address, "RouteHops.%d.HostAddress", i);
|
||
dmasprintf(&errorcode, "RouteHops.%d.ErrorCode", i);
|
||
dmasprintf(&rttimes, "RouteHops.%d.RTTimes", i);
|
||
|
||
dmuci_get_value_by_section_string(s, "host", &traceroute.host_name);
|
||
dmuci_get_value_by_section_string(s, "ip", &traceroute.host_address);
|
||
dmuci_get_value_by_section_string(s, "time", &traceroute.rttimes);
|
||
|
||
add_list_paramameter(dmctx, host, traceroute.host_name, "string", NULL, 0);
|
||
add_list_paramameter(dmctx, host_address, traceroute.host_address, "string", NULL, 0);
|
||
add_list_paramameter(dmctx, errorcode, "0", "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, rttimes, traceroute.rttimes, "string", NULL, 0);
|
||
i++;
|
||
}
|
||
|
||
return SUCCESS;
|
||
}
|
||
|
||
static opr_ret_t ip_diagnostics_download(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
json_object *json_res = NULL;
|
||
struct download_diagnostics download = {0};
|
||
|
||
json_res = json_tokener_parse((const char *)input);
|
||
download.download_url = dmjson_get_value(json_res, 1, "DownloadURL");
|
||
if(download.download_url[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
download.interface = dmjson_get_value(json_res, 1, "Interface");
|
||
download.dscp = dmjson_get_value(json_res, 1, "DSCP");
|
||
download.ethernet_priority = dmjson_get_value(json_res, 1, "EthernetPriority");
|
||
download.proto = dmjson_get_value(json_res, 1, "ProtocolVersion");
|
||
download.num_of_connections = dmjson_get_value(json_res, 1, "NumberOfConnections");
|
||
download.enable_per_connection_results = dmjson_get_value(json_res, 1, "EnablePerConnectionResults");
|
||
|
||
set_param_diagnostics("downloaddiagnostic", "url", download.download_url);
|
||
set_param_diagnostics("downloaddiagnostic", "device", download.interface);
|
||
set_param_diagnostics("downloaddiagnostic", "DSCP", download.dscp);
|
||
set_param_diagnostics("downloaddiagnostic", "ethernetpriority", download.ethernet_priority);
|
||
set_param_diagnostics("downloaddiagnostic", "ProtocolVersion", download.proto);
|
||
set_param_diagnostics("downloaddiagnostic", "NumberOfConnections", download.num_of_connections);
|
||
set_param_diagnostics("downloaddiagnostic", "EnablePerConnection", download.enable_per_connection_results);
|
||
|
||
if(start_upload_download_diagnostic(DOWNLOAD_DIAGNOSTIC) == -1)
|
||
return FAIL;
|
||
|
||
download.romtime = get_param_diagnostics("downloaddiagnostic", "ROMtime");
|
||
download.bomtime = get_param_diagnostics("downloaddiagnostic", "BOMtime");
|
||
download.eomtime = get_param_diagnostics("downloaddiagnostic", "EOMtime");
|
||
download.test_bytes_received = get_param_diagnostics("downloaddiagnostic", "TestBytesReceived");
|
||
download.total_bytes_received = get_param_diagnostics("downloaddiagnostic", "TotalBytesReceived");
|
||
download.total_bytes_sent = get_param_diagnostics("downloaddiagnostic", "TotalBytesSent");
|
||
download.test_bytes_received_under_full_loading = get_param_diagnostics("downloaddiagnostic", "TestBytesReceived");
|
||
download.total_bytes_received_under_full_loading = get_param_diagnostics("downloaddiagnostic", "TotalBytesReceived");
|
||
download.total_bytes_sent_under_full_loading = get_param_diagnostics("downloaddiagnostic", "TotalBytesSent");
|
||
download.period_of_full_loading = get_param_diagnostics("downloaddiagnostic", "PeriodOfFullLoading");
|
||
download.tcp_open_request_time = get_param_diagnostics("downloaddiagnostic", "TCPOpenRequestTimes");
|
||
download.tcp_open_response_time = get_param_diagnostics("downloaddiagnostic", "TCPOpenResponseTime");
|
||
|
||
char *param_rom_time = dmstrdup("ROMTime");
|
||
char *param_bom_time = dmstrdup("BOMTime");
|
||
char *param_eom_time = dmstrdup("EOMTime");
|
||
char *param_test_bytes_received = dmstrdup("TestBytesReceived");
|
||
char *param_total_bytes_received = dmstrdup("TotalBytesReceived");
|
||
char *param_total_bytes_sent = dmstrdup("TotalBytesSent");
|
||
char *param_test_bytes_received_under_full_loading = dmstrdup("TestBytesReceivedUnderFullLoading");
|
||
char *param_total_bytes_received_under_full_loading = dmstrdup("TotalBytesReceivedUnderFullLoading");
|
||
char *param_total_bytes_sent_under_full_loading = dmstrdup("TotalBytesSentUnderFullLoading");
|
||
char *param_period_of_full_loading = dmstrdup("PeriodOfFullLoading");
|
||
char *param_tcp_open_request_time = dmstrdup("TCPOpenRequestTime");
|
||
char *param_tcp_open_response_time = dmstrdup("TCPOpenResponseTime");
|
||
|
||
add_list_paramameter(dmctx, param_rom_time, download.romtime, "dateTime", NULL, 0);
|
||
add_list_paramameter(dmctx, param_bom_time, download.bomtime, "dateTime", NULL, 0);
|
||
add_list_paramameter(dmctx, param_eom_time, download.eomtime, "dateTime", NULL, 0);
|
||
add_list_paramameter(dmctx, param_test_bytes_received, download.test_bytes_received, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_total_bytes_received, download.total_bytes_received, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_total_bytes_sent, download.total_bytes_sent, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_test_bytes_received_under_full_loading, download.test_bytes_received_under_full_loading, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_total_bytes_received_under_full_loading, download.total_bytes_received_under_full_loading, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_total_bytes_sent_under_full_loading, download.total_bytes_sent_under_full_loading, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_period_of_full_loading, download.period_of_full_loading, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_tcp_open_request_time, download.tcp_open_request_time, "dateTime", NULL, 0);
|
||
add_list_paramameter(dmctx, param_tcp_open_response_time, download.tcp_open_response_time, "dateTime", NULL, 0);
|
||
|
||
return SUCCESS;
|
||
}
|
||
|
||
static opr_ret_t ip_diagnostics_upload(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
json_object *json_res = NULL;
|
||
struct upload_diagnostics upload = {0};
|
||
|
||
json_res = json_tokener_parse((const char *)input);
|
||
upload.upload_url = dmjson_get_value(json_res, 1, "UploadURL");
|
||
if(upload.upload_url[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
upload.test_file_length = dmjson_get_value(json_res, 1, "TestFileLength");
|
||
if(upload.test_file_length[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
upload.interface = dmjson_get_value(json_res, 1, "Interface");
|
||
upload.dscp = dmjson_get_value(json_res, 1, "DSCP");
|
||
upload.ethernet_priority = dmjson_get_value(json_res, 1, "EthernetPriority");
|
||
upload.proto = dmjson_get_value(json_res, 1, "ProtocolVersion");
|
||
upload.num_of_connections = dmjson_get_value(json_res, 1, "NumberOfConnections");
|
||
upload.enable_per_connection_results = dmjson_get_value(json_res, 1, "EnablePerConnectionResults");
|
||
|
||
set_param_diagnostics("uploaddiagnostic", "url", upload.upload_url);
|
||
set_param_diagnostics("uploaddiagnostic", "TestFileLength", upload.test_file_length);
|
||
set_param_diagnostics("uploaddiagnostic", "device", upload.interface);
|
||
set_param_diagnostics("uploaddiagnostic", "DSCP", upload.dscp);
|
||
set_param_diagnostics("uploaddiagnostic", "ethernetpriority", upload.ethernet_priority);
|
||
set_param_diagnostics("uploaddiagnostic", "ProtocolVersion", upload.proto);
|
||
set_param_diagnostics("uploaddiagnostic", "NumberOfConnections", upload.num_of_connections);
|
||
set_param_diagnostics("uploaddiagnostic", "EnablePerConnection", upload.enable_per_connection_results);
|
||
|
||
if(start_upload_download_diagnostic(UPLOAD_DIAGNOSTIC) == -1)
|
||
return FAIL;
|
||
|
||
upload.romtime = get_param_diagnostics("uploaddiagnostic", "ROMtime");
|
||
upload.bomtime = get_param_diagnostics("uploaddiagnostic", "BOMtime");
|
||
upload.eomtime = get_param_diagnostics("uploaddiagnostic", "EOMtime");
|
||
upload.test_bytes_sent = get_param_diagnostics("uploaddiagnostic", "TestBytesSent");
|
||
upload.total_bytes_received = get_param_diagnostics("uploaddiagnostic", "TotalBytesReceived");
|
||
upload.total_bytes_sent = get_param_diagnostics("uploaddiagnostic", "TotalBytesSent");
|
||
upload.test_bytes_sent_under_full_loading = get_param_diagnostics("uploaddiagnostic", "TestBytesSent");
|
||
upload.total_bytes_received_under_full_loading = get_param_diagnostics("uploaddiagnostic", "TotalBytesReceived");
|
||
upload.total_bytes_sent_under_full_loading = get_param_diagnostics("uploaddiagnostic", "TotalBytesSent");
|
||
upload.period_of_full_loading = get_param_diagnostics("uploaddiagnostic", "PeriodOfFullLoading");
|
||
upload.tcp_open_request_time = get_param_diagnostics("uploaddiagnostic", "TCPOpenRequestTimes");
|
||
upload.tcp_open_response_time = get_param_diagnostics("uploaddiagnostic", "TCPOpenResponseTime");
|
||
|
||
char *param_rom_time = dmstrdup("ROMTime");
|
||
char *param_bom_time = dmstrdup("BOMTime");
|
||
char *param_eom_time = dmstrdup("EOMTime");
|
||
char *param_test_bytes_sent = dmstrdup("TestBytesSent");
|
||
char *param_total_bytes_received = dmstrdup("TotalBytesReceived");
|
||
char *param_total_bytes_sent = dmstrdup("TotalBytesSent");
|
||
char *param_test_bytes_sent_under_full_loading = dmstrdup("TestBytesSentUnderFullLoading");
|
||
char *param_total_bytes_received_under_full_loading = dmstrdup("TotalBytesReceivedUnderFullLoading");
|
||
char *param_total_bytes_sent_under_full_loading = dmstrdup("TotalBytesSentUnderFullLoading");
|
||
char *param_period_of_full_loading = dmstrdup("PeriodOfFullLoading");
|
||
char *param_tcp_open_request_time = dmstrdup("TCPOpenRequestTime");
|
||
char *param_tcp_open_response_time = dmstrdup("TCPOpenResponseTime");
|
||
|
||
add_list_paramameter(dmctx, param_rom_time, upload.romtime, "dateTime", NULL, 0);
|
||
add_list_paramameter(dmctx, param_bom_time, upload.bomtime, "dateTime", NULL, 0);
|
||
add_list_paramameter(dmctx, param_eom_time, upload.eomtime, "dateTime", NULL, 0);
|
||
add_list_paramameter(dmctx, param_test_bytes_sent, upload.test_bytes_sent, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_total_bytes_received, upload.total_bytes_received, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_total_bytes_sent, upload.total_bytes_sent, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_test_bytes_sent_under_full_loading, upload.test_bytes_sent_under_full_loading, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_total_bytes_received_under_full_loading, upload.total_bytes_received_under_full_loading, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_total_bytes_sent_under_full_loading, upload.total_bytes_sent_under_full_loading, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_period_of_full_loading, upload.period_of_full_loading, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_tcp_open_request_time, upload.tcp_open_request_time, "dateTime", NULL, 0);
|
||
add_list_paramameter(dmctx, param_tcp_open_response_time, upload.tcp_open_response_time, "dateTime", NULL, 0);
|
||
|
||
return SUCCESS;
|
||
}
|
||
|
||
static opr_ret_t ip_diagnostics_udpecho(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
json_object *json_res = NULL;
|
||
struct udpecho_diagnostics udpecho = {0};
|
||
|
||
json_res = json_tokener_parse((const char *)input);
|
||
udpecho.host = dmjson_get_value(json_res, 1, "Host");
|
||
if(udpecho.host[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
udpecho.port = dmjson_get_value(json_res, 1, "Port");
|
||
if(udpecho.port[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
|
||
udpecho.interface = dmjson_get_value(json_res, 1, "Interface");
|
||
udpecho.proto = dmjson_get_value(json_res, 1, "ProtocolVersion");
|
||
udpecho.nbofrepetition = dmjson_get_value(json_res, 1, "NumberOfRepetitions");
|
||
udpecho.timeout = dmjson_get_value(json_res, 1, "Timeout");
|
||
udpecho.datablocksize = dmjson_get_value(json_res, 1, "DataBlockSize");
|
||
udpecho.dscp = dmjson_get_value(json_res, 1, "DSCP");
|
||
udpecho.inter_transmission_time = dmjson_get_value(json_res, 1, "InterTransmissionTime");
|
||
|
||
set_param_diagnostics("udpechodiagnostic", "Host", udpecho.host);
|
||
set_param_diagnostics("udpechodiagnostic", "port", udpecho.port);
|
||
set_param_diagnostics("udpechodiagnostic", "interface", udpecho.interface);
|
||
set_param_diagnostics("udpechodiagnostic", "ProtocolVersion", udpecho.proto);
|
||
set_param_diagnostics("udpechodiagnostic", "NumberOfRepetitions", udpecho.nbofrepetition);
|
||
set_param_diagnostics("udpechodiagnostic", "Timeout", udpecho.timeout);
|
||
set_param_diagnostics("udpechodiagnostic", "DataBlockSize", udpecho.datablocksize);
|
||
set_param_diagnostics("udpechodiagnostic", "DSCP", udpecho.dscp);
|
||
set_param_diagnostics("udpechodiagnostic", "InterTransmissionTime", udpecho.inter_transmission_time);
|
||
|
||
//Free uci_varstate_ctx
|
||
end_uci_varstate_ctx();
|
||
|
||
dmcmd("/bin/sh", 3, UDPECHO_PATH, "run", "usp");
|
||
|
||
//Allocate uci_varstate_ctx
|
||
init_uci_varstate_ctx();
|
||
|
||
udpecho.success_count = get_param_diagnostics("udpechodiagnostic", "SuccessCount");
|
||
udpecho.failure_count = get_param_diagnostics("udpechodiagnostic", "FailureCount");
|
||
udpecho.average_response_time = get_param_diagnostics("udpechodiagnostic", "AverageResponseTime");
|
||
udpecho.minimum_response_time = get_param_diagnostics("udpechodiagnostic", "MinimumResponseTime");
|
||
udpecho.maximum_response_time = get_param_diagnostics("udpechodiagnostic", "MaximumResponseTime");
|
||
|
||
char *param_success_count = dmstrdup("SuccessCount");
|
||
char *param_failure_count = dmstrdup("FailureCount");
|
||
char *param_average_response_time = dmstrdup("AverageResponseTime");
|
||
char *param_minimum_response_time = dmstrdup("MinimumResponseTime");
|
||
char *param_maximum_response_time = dmstrdup("MaximumResponseTime");
|
||
|
||
add_list_paramameter(dmctx, param_success_count, udpecho.success_count, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_failure_count, udpecho.failure_count, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_average_response_time, udpecho.average_response_time, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_minimum_response_time, udpecho.minimum_response_time, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_maximum_response_time, udpecho.maximum_response_time, "unsignedInt", NULL, 0);
|
||
|
||
return SUCCESS;
|
||
}
|
||
|
||
static opr_ret_t ip_diagnostics_serverselection(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
|
||
json_object *json_res = NULL;
|
||
struct serverselection_diagnostics serverselection = {0};
|
||
|
||
json_res = json_tokener_parse((const char *)input);
|
||
serverselection.hostlist = dmjson_get_value(json_res, 1, "HostList");
|
||
if(serverselection.hostlist[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
serverselection.port = dmjson_get_value(json_res, 1, "Port");
|
||
serverselection.proto = dmjson_get_value(json_res, 1, "Protocol");
|
||
if (strcmp(serverselection.proto, "ICMP")) {
|
||
if(serverselection.port[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
}
|
||
serverselection.protocol_version = dmjson_get_value(json_res, 1, "ProtocolVersion");
|
||
serverselection.interface = dmjson_get_value(json_res, 1, "Interface");
|
||
serverselection.nbofrepetition = dmjson_get_value(json_res, 1, "NumberOfRepetitions");
|
||
serverselection.timeout = dmjson_get_value(json_res, 1, "Timeout");
|
||
|
||
set_param_diagnostics("serverselectiondiagnostic", "HostList", serverselection.hostlist);
|
||
set_param_diagnostics("serverselectiondiagnostic", "interface", serverselection.interface);
|
||
set_param_diagnostics("serverselectiondiagnostic", "ProtocolVersion", serverselection.proto);
|
||
set_param_diagnostics("serverselectiondiagnostic", "NumberOfRepetitions", serverselection.nbofrepetition);
|
||
set_param_diagnostics("serverselectiondiagnostic", "port", serverselection.port);
|
||
set_param_diagnostics("serverselectiondiagnostic", "Protocol", serverselection.proto);
|
||
|
||
//Free uci_varstate_ctx
|
||
end_uci_varstate_ctx();
|
||
|
||
dmcmd("/bin/sh", 3, SERVERSELECTION_PATH, "run", "usp");
|
||
|
||
//Allocate uci_varstate_ctx
|
||
init_uci_varstate_ctx();
|
||
|
||
serverselection.fasthost = get_param_diagnostics("serverselectiondiagnostic", "AverageResponseTimeDetailed");
|
||
serverselection.average_response_time = get_param_diagnostics("serverselectiondiagnostic", "AverageResponseTime");
|
||
serverselection.minimum_response_time = get_param_diagnostics("serverselectiondiagnostic", "MinimumResponseTime");
|
||
serverselection.maximum_response_time = get_param_diagnostics("serverselectiondiagnostic", "MaximumResponseTime");
|
||
|
||
|
||
char *param_fastest_host = dmstrdup("FastestHost");
|
||
char *param_average_response_time = dmstrdup("AverageResponseTime");
|
||
char *param_minimum_response_time = dmstrdup("MinimumResponseTime");
|
||
char *param_maximum_response_time = dmstrdup("MaximumResponseTime");
|
||
|
||
add_list_paramameter(dmctx, param_fastest_host, serverselection.fasthost, "string", NULL, 0);
|
||
add_list_paramameter(dmctx, param_average_response_time, serverselection.average_response_time, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_minimum_response_time, serverselection.minimum_response_time, "unsignedInt", NULL, 0);
|
||
add_list_paramameter(dmctx, param_maximum_response_time, serverselection.maximum_response_time, "unsignedInt", NULL, 0);
|
||
|
||
return SUCCESS;
|
||
}
|
||
|
||
static opr_ret_t ip_diagnostics_nslookup(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
json_object *json_res = NULL;
|
||
struct nslookup_diagnostics nslookup = {0};
|
||
struct uci_section *s = NULL;
|
||
char *status, *answertype, *hostname, *ipaddress, *dnsserverip, *responsetime;
|
||
int i = 1;
|
||
|
||
json_res = json_tokener_parse((const char *)input);
|
||
nslookup.hostname = dmjson_get_value(json_res, 1, "HostName");
|
||
if(nslookup.hostname[0] == '\0')
|
||
return UBUS_INVALID_ARGUMENTS;
|
||
nslookup.interface = dmjson_get_value(json_res, 1, "Interface");
|
||
nslookup.dnsserver = dmjson_get_value(json_res, 1, "DNSServer");
|
||
nslookup.timeout = dmjson_get_value(json_res, 1, "Timeout");
|
||
nslookup.nbofrepetition = dmjson_get_value(json_res, 1, "NumberOfRepetitions");
|
||
|
||
set_param_diagnostics("nslookupdiagnostic", "HostName", nslookup.hostname);
|
||
set_param_diagnostics("nslookupdiagnostic", "interface", nslookup.interface);
|
||
set_param_diagnostics("nslookupdiagnostic", "DNSServer", nslookup.dnsserver);
|
||
set_param_diagnostics("nslookupdiagnostic", "Timeout", nslookup.timeout);
|
||
set_param_diagnostics("nslookupdiagnostic", "NumberOfRepetitions", nslookup.nbofrepetition);
|
||
|
||
//Free uci_varstate_ctx
|
||
end_uci_varstate_ctx();
|
||
|
||
dmcmd("/bin/sh", 3, NSLOOKUP_PATH, "run", "usp");
|
||
|
||
//Allocate uci_varstate_ctx
|
||
init_uci_varstate_ctx();
|
||
|
||
nslookup.success_count = get_param_diagnostics("nslookupdiagnostic", "SuccessCount");
|
||
char *param_success_count = dmstrdup("SuccessCount");
|
||
add_list_paramameter(dmctx, param_success_count, nslookup.success_count, "unsignedInt", NULL, 0);
|
||
|
||
uci_foreach_sections_state("cwmp", "NSLookupResult", s)
|
||
{
|
||
dmasprintf(&status, "Result.%d.Status", i);
|
||
dmasprintf(&answertype, "Result.%d.AnswerType", i);
|
||
dmasprintf(&hostname, "Result.%d.HostNameReturned", i);
|
||
dmasprintf(&ipaddress, "Result.%d.IPAddresses", i);
|
||
dmasprintf(&dnsserverip, "Result.%d.DNSServerIP", i);
|
||
dmasprintf(&responsetime, "Result.%d.ResponseTime", i);
|
||
|
||
dmuci_get_value_by_section_string(s, "Status", &nslookup.status);
|
||
dmuci_get_value_by_section_string(s, "AnswerType", &nslookup.answer_type);
|
||
dmuci_get_value_by_section_string(s, "HostNameReturned", &nslookup.hostname_returned);
|
||
dmuci_get_value_by_section_string(s, "IPAddresses", &nslookup.ip_addresses);
|
||
dmuci_get_value_by_section_string(s, "DNSServerIP", &nslookup.dns_server_ip);
|
||
dmuci_get_value_by_section_string(s, "ResponseTime", &nslookup.response_time);
|
||
|
||
add_list_paramameter(dmctx, status, nslookup.status, "string", NULL, 0);
|
||
add_list_paramameter(dmctx, answertype, nslookup.answer_type, "string", NULL, 0);
|
||
add_list_paramameter(dmctx, hostname, nslookup.hostname_returned, "string", NULL, 0);
|
||
add_list_paramameter(dmctx, ipaddress, nslookup.ip_addresses, "string", NULL, 0);
|
||
add_list_paramameter(dmctx, dnsserverip, nslookup.dns_server_ip, "string", NULL, 0);
|
||
add_list_paramameter(dmctx, responsetime, nslookup.response_time, "unsignedInt", NULL, 0);
|
||
i++;
|
||
}
|
||
|
||
return SUCCESS;
|
||
}
|
||
|
||
static struct op_cmd operate_helper[] = {
|
||
{"Device.Reboot", reboot_device},
|
||
{"Device.FactoryReset", factory_reset},
|
||
{"Device.IP.Interface.*.Reset", network_interface_reset},
|
||
{"Device.PPP.Interface.*.Reset", network_interface_reset},
|
||
{"Device.WiFi.Reset", wireless_reset},
|
||
{"Device.WiFi.AccessPoint.*.Security.Reset", ap_security_reset},
|
||
{"Device.DHCPv4.Client.*.Renew", dhcp_client_renew},
|
||
{"Device.DHCPv6.Client.*.Renew", dhcp_client_renew},
|
||
{"Device.DeviceInfo.VendorConfigFile.*.Backup", vendor_conf_backup},
|
||
{"Device.DeviceInfo.VendorConfigFile.*.Restore", vendor_conf_restore},
|
||
{"Device.WiFi.NeighboringWiFiDiagnostic", fetch_neighboring_wifi_diagnostic},
|
||
//{"Device.DeviceInfo.VendorLogFile.*.Upload", blob_parser},
|
||
{"Device.IP.Diagnostics.IPPing", ip_diagnostics_ipping},
|
||
{"Device.IP.Diagnostics.TraceRoute", ip_diagnostics_traceroute},
|
||
{"Device.IP.Diagnostics.DownloadDiagnostics", ip_diagnostics_download},
|
||
{"Device.IP.Diagnostics.UploadDiagnostics", ip_diagnostics_upload},
|
||
{"Device.IP.Diagnostics.UDPEchoDiagnostics", ip_diagnostics_udpecho},
|
||
{"Device.IP.Diagnostics.ServerSelectionDiagnostics", ip_diagnostics_serverselection},
|
||
{"Device.DNS.Diagnostics.NSLookupDiagnostics", ip_diagnostics_nslookup}
|
||
};
|
||
|
||
int operate_on_node(struct dmctx *dmctx, char *path, char *input)
|
||
{
|
||
uint8_t len = 0;
|
||
|
||
len = ARRAY_SIZE(operate_helper);
|
||
for(uint8_t i=0; i<len; i++) {
|
||
if(match(path, operate_helper[i].name)) {
|
||
return(operate_helper[i].opt(dmctx, path, input));
|
||
}
|
||
}
|
||
return CMD_NOT_FOUND;
|
||
}
|