/* * 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: Imen Bhiri * Author: Feten Besbes * Author: Amin Ben Ramdhane * Author: Omar Kallel */ #include "datamodel.h" #define DU_STATE_CHANGE_SEC_NAME "du_state_change" #define TRANSFER_COMPL_SEC_NAME "transfer_complete" #ifndef CWMP_DUAL_SUPPORT #define CWMP_DUAL_SUPPORT BBFDM_CWMP #endif static char *CWMP_EVENTS[] = {"0 BOOTSTRAP", "1 BOOT", "2 PERIODIC", "3 SCHEDULED", "5 KICKED", "6 CONNECTION REQUEST", "7 TRANSFER COMPLETE", "8 DIAGNOSTICS COMPLETE", "9 REQUEST DOWNLOAD", "10 AUTONOMOUS TRANSFER COMPLETE", "11 DU STATE CHANGE COMPLETE", "12 AUTONOMOUS DU STATE CHANGE COMPLETE", "13 WAKEUP", "M Reboot", "M ScheduleInform", "M Download", "M ScheduleDownload", "M Upload", "M ChangeDUState", "14 HEARTBEAT", NULL}; static char *Forced_Inform_Parmeters[] = {"Device.RootDataModelVersion", "Device.DeviceInfo.HardwareVersion", "Device.DeviceInfo.SoftwareVersion", "Device.DeviceInfo.ProvisioningCode", "Device.ManagementServer.ParameterKey", "Device.ManagementServer.ConnectionRequestURL", "Device.ManagementServer.AliasBasedAddressing", NULL}; static char *DUStateOperationType[] = {"Install", "Update", "Uninstall", NULL}; static char *DUStateResultType[] = {"Success", "Failure", "Both", NULL}; static char *DUStateFaultCode[] = {"9001", "9003", "9012", "9013", "9015", "9016", "9017", "9018","9022", "9023", "9024", "9025", "9026", "9027", "9028", "9029", "9030", "9031", "9032", NULL}; static char *TCTransferType[] = {"Upload", "Download", "Both", NULL}; static char *TCResultType[] = {"Success", "Failure", "Both", NULL}; static char *TCFileType[] = {"1 Firmware Upgrade Image", "2 Web Content", "3 Vendor Configuration File", "4 Vendor Log File", NULL}; enum suboption_125 { OPT_OUI, OPT_SERIAL, OPT_CLASS }; struct manageable_device_args { char mac[18]; char oui[7]; char serial[65]; char class[65]; }; struct manageable_device_node { struct list_head list; struct manageable_device_args dev; }; static struct uci_section* get_autonomous_notify_section(const char *sec_name) { struct uci_section *s = NULL; uci_foreach_sections("cwmp", "autonomous_notify", s) { if (strcmp(section_name(s), sec_name) == 0) { return s; } } dmuci_add_section("cwmp", "autonomous_notify", &s); if (s != NULL) dmuci_rename_section_by_section(s, sec_name); return s; } static void get_option125_suboption(char *data, int option, char *dst, int dst_len) { int data_len = 0, len = 0; char *pos = NULL; data_len = DM_STRLEN(data); if (data_len == 0) return; switch (option) { case OPT_OUI: pos = strstr(data, "oui_len"); if (pos == NULL) return; sscanf(pos, "oui_len=%d", &len); pos = strstr(data, "device_oui="); if (pos == NULL) return; pos = pos + 11; if (pos >= (data + data_len)) return; if (len >= dst_len) len = dst_len; else len = len + 1; snprintf(dst, len, "%s", pos); break; case OPT_SERIAL: pos = strstr(data, "serial_len"); if (pos == NULL) return; sscanf(pos, "serial_len=%d", &len); pos = strstr(data, "device_serial="); if (pos == NULL) return; pos = pos + 14; if (pos >= (data + data_len)) return; if (len >= dst_len) len = dst_len; else len = len + 1; snprintf(dst, len, "%s", pos); break; case OPT_CLASS: pos = strstr(data, "class_len"); if (pos == NULL) return; sscanf(pos, "class_len=%d", &len); pos = strstr(data, "device_class="); if (pos == NULL) return; pos = pos + 13; if (pos >= (data + data_len)) return; if (len >= dst_len) len = dst_len; else len = len + 1; snprintf(dst, len, "%s", pos); break; default: return; } } static bool is_active_host(const char *mac, json_object *res) { json_object *host_obj = NULL, *arrobj = NULL; int i = 0; bool active = false; dmjson_foreach_obj_in_array(res, arrobj, host_obj, i, 1, "hosts") { if (strcmp(dmjson_get_value(host_obj, 1, "macaddr"), mac) == 0) { char *val = dmjson_get_value(host_obj, 1, "active"); string_to_bool(val, &active); break; } } return active; } // Get IPv4 address assigned to an interface using ioctl // return ==> dynamically allocated IPv4 address on success, // ==> empty string on failure // Note: Ownership of returned dynamically allocated IPv4 address is with caller static char *dm_ioctl_get_ipv4(char *interface_name) { struct ifreq ifr; char *ip = NULL; int fd; if (!DM_STRLEN(interface_name)) return ip; fd = socket(AF_INET, SOCK_DGRAM, 0); if (fd == -1) goto exit; ifr.ifr_addr.sa_family = AF_INET; DM_STRNCPY(ifr.ifr_name, interface_name, IFNAMSIZ); if (ioctl(fd, SIOCGIFADDR, &ifr) == -1) goto exit; ip = dmstrdup(inet_ntoa(((struct sockaddr_in *)&ifr.ifr_addr )->sin_addr)); exit: close(fd); return ip; } // Get Global IPv6 address assigned to an interface using ifaddrs // return ==> dynamically allocated IPv6 address on success, // ==> empty string on failure // Note: Ownership of returned dynamically allocated IPv6 address is with caller static char *dm_ifaddrs_get_global_ipv6(char *interface_name) { struct ifaddrs *ifaddr = NULL,*ifa = NULL; void *in_addr = NULL; int family, err = 0; char *ip = NULL; if (!DM_STRLEN(interface_name)) return ip; err = getifaddrs(&ifaddr); if (err != 0) return ip; for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next) { if (ifa->ifa_addr == NULL || ifa->ifa_name == NULL || strcmp(ifa->ifa_name, interface_name) != 0) continue; // Skip this result, if it is not an IPv6 node family = ifa->ifa_addr->sa_family; if (family != AF_INET6) continue; #define NOT_GLOBAL_UNICAST(addr) \ ( (IN6_IS_ADDR_UNSPECIFIED(addr)) || (IN6_IS_ADDR_LOOPBACK(addr)) || \ (IN6_IS_ADDR_MULTICAST(addr)) || (IN6_IS_ADDR_LINKLOCAL(addr)) || \ (IN6_IS_ADDR_SITELOCAL(addr)) ) char buf[INET6_ADDRSTRLEN] = {0}; in_addr = &((struct sockaddr_in6 *)ifa->ifa_addr)->sin6_addr; // Skip this result, if it is an IPv6 address, but not globally routable if (NOT_GLOBAL_UNICAST((struct in6_addr *)in_addr)) continue; inet_ntop(family, in_addr, buf, sizeof(buf)); ip = dmstrdup(buf); break; } if (ifaddr) freeifaddrs(ifaddr); return ip; } static int browseManageableDevice(struct dmctx *dmctx, DMNODE *parent_node, void *prev_data, char *prev_instance) { #define DHCP_CLIENT_OPTIONS_FILE "/var/dhcp.client.options" // cppcheck-suppress cert-MSC24-C FILE *f = fopen(DHCP_CLIENT_OPTIONS_FILE, "r"); if (f == NULL) return 0; struct manageable_device_args device; struct manageable_device_node *dev_p = NULL; char line[2048]; char *inst = NULL; int id = 0; json_object *res = NULL; LIST_HEAD(dev_list); dmubus_call("hosts", "show", UBUS_ARGS{0}, 0, &res); while (fgets(line, sizeof(line), f) != NULL) { remove_new_line(line); memset(&device, 0, sizeof(device)); sscanf(line, "%17s", device.mac); if (DM_STRLEN(device.mac) < 17) continue; /* check that the host is still active or not */ if (!is_active_host(device.mac, res)) continue; get_option125_suboption(line, OPT_OUI, device.oui, sizeof(device.oui)); get_option125_suboption(line, OPT_SERIAL, device.serial, sizeof(device.serial)); get_option125_suboption(line, OPT_CLASS, device.class, sizeof(device.class)); if (DM_STRCMP(device.oui, "-") == 0 || DM_STRCMP(device.serial, "-") == 0) continue; /* check if already added in the list */ bool found = false; list_for_each_entry(dev_p, &dev_list, list) { if (strcmp(dev_p->dev.oui, device.oui) == 0 && strcmp(dev_p->dev.serial, device.serial) == 0 && strcmp(dev_p->dev.class, device.class) == 0) { found = true; break; } } if (found == true) continue; /* add device in device list */ struct manageable_device_node *node = dmcalloc(1, sizeof(struct manageable_device_node)); if (node == NULL) continue; list_add_tail(&node->list, &dev_list); snprintf(node->dev.class, sizeof(node->dev.class), "%s", device.class); snprintf(node->dev.serial, sizeof(node->dev.serial), "%s", device.serial); snprintf(node->dev.oui, sizeof(node->dev.oui), "%s", device.oui); /* add device instance */ inst = handle_instance_without_section(dmctx, parent_node, ++id); if (DM_LINK_INST_OBJ(dmctx, parent_node, (void *)&device, inst) == DM_STOP) break; } /* free device list */ dev_p = NULL; while (dev_list.next != &dev_list) { dev_p = list_entry(dev_list.next, struct manageable_device_node, list); list_del(&dev_p->list); } fclose(f); return 0; } /*#Device.ManagementServer.URL!UCI:cwmp/acs,acs/url*/ static int get_management_server_url(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { char *dhcp = NULL, *url = NULL, *dhcp_url = NULL; bool discovery = false; dmuci_get_option_value_string("cwmp", "acs", "dhcp_discovery", &dhcp); dmuci_get_option_value_string("cwmp", "acs", "url", &url); dmuci_get_option_value_string("cwmp", "acs", "dhcp_url", &dhcp_url); discovery = dmuci_string_to_boolean(dhcp); if ((discovery == true) && (DM_STRLEN(dhcp_url) != 0)) *value = dhcp_url; else if (DM_STRLEN(url) != 0) *value = url; return 0; } static int set_management_server_url(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_string(ctx, value, -1, 256, NULL, NULL)) return FAULT_9007; break; case VALUESET: dmuci_set_value("cwmp", "acs", "dhcp_discovery", "disable"); dmuci_set_value("cwmp", "acs", "dhcp_url", ""); dmuci_set_value("cwmp", "acs", "url", value); break; } return 0; } /*#Device.ManagementServer.Username!UCI:cwmp/acs,acs/userid*/ static int get_management_server_username(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_option_value_string("cwmp", "acs", "userid", value); return 0; } static int set_management_server_username(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_string(ctx, value, -1, 256, NULL, NULL)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "acs", "userid", value); return 0; } return 0; } /*#Device.ManagementServer.Password!UCI:cwmp/acs,acs/passwd*/ static int set_management_server_passwd(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_string(ctx, value, -1, 256, NULL, NULL)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "acs", "passwd", value); return 0; } return 0; } /*#Device.ManagementServer.ScheduleReboot!UCI:cwmp/cpe,cpe/schedule_reboot*/ static int get_management_server_schedule_reboot(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_option_value_string("cwmp", "cpe", "schedule_reboot", value); return 0; } static int set_management_server_schedule_reboot(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_dateTime(ctx, value)) return FAULT_9007; break; case VALUESET: dmuci_set_value("cwmp", "cpe", "schedule_reboot", value); break; } return 0; } /*#Device.ManagementServer.DelayReboot!UCI:cwmp/cpe,cpe/delay_reboot*/ static int get_management_server_delay_reboot(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmuci_get_option_value_fallback_def("cwmp", "cpe", "delay_reboot", "-1"); return 0; } static int set_management_server_delay_reboot(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_int(ctx, value, RANGE_ARGS{{"-1",NULL}}, 1)) return FAULT_9007; break; case VALUESET: dmuci_set_value("cwmp", "cpe", "delay_reboot", value); break; } return 0; } /*#Device.ManagementServer.ParameterKey!UCI:cwmp/acs,acs/ParameterKey*/ static int get_management_server_key(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_option_value_string("cwmp", "cpe", "ParameterKey", value); return 0; } /*#Device.ManagementServer.PeriodicInformEnable!UCI:cwmp/acs,acs/periodic_inform_enable*/ static int get_management_server_periodic_inform_enable(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmuci_get_option_value_fallback_def("cwmp", "acs", "periodic_inform_enable", "1"); return 0; } static int set_management_server_periodic_inform_enable(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { bool b; switch (action) { case VALUECHECK: if (bbfdm_validate_boolean(ctx, value)) return FAULT_9007; return 0; case VALUESET: string_to_bool(value, &b); dmuci_set_value("cwmp", "acs", "periodic_inform_enable", b ? "1" : "0"); return 0; } return 0; } /*#Device.ManagementServer.PeriodicInformInterval!UCI:cwmp/acs,acs/periodic_inform_interval*/ static int get_management_server_periodic_inform_interval(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmuci_get_option_value_fallback_def("cwmp", "acs", "periodic_inform_interval", "1800"); return 0; } static int set_management_server_periodic_inform_interval(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_unsignedInt(ctx, value, RANGE_ARGS{{"1",NULL}}, 1)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "acs", "periodic_inform_interval", value); return 0; } return 0; } /*#Device.ManagementServer.PeriodicInformTime!UCI:cwmp/acs,acs/periodic_inform_time*/ static int get_management_server_periodic_inform_time(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_option_value_string("cwmp", "acs", "periodic_inform_time", value); return 0; } static int set_management_server_periodic_inform_time(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_dateTime(ctx, value)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "acs", "periodic_inform_time", value); return 0; } return 0; } static void get_management_ip_port(char **listen_addr) { char *ip = NULL, *port = NULL, *interface = NULL, *ip_version = NULL; char *l3_device = NULL; dmuci_get_option_value_string("cwmp", "cpe", "default_wan_interface", &interface); dmuci_get_option_value_string("cwmp", "cpe", "interface", &l3_device); dmuci_get_option_value_string_varstate("icwmp", "cpe", "port", &port); dmuci_get_option_value_string_varstate("icwmp", "acs", "ip_version", &ip_version); if (DM_STRLEN(port) == 0) port = dmstrdup("7547"); if (DM_STRLEN(l3_device) == 0 && DM_STRLEN(interface) != 0) l3_device = get_l3_device(interface); if (!DM_STRLEN(l3_device)) return; if (DM_STRCMP(ip_version, "6") == 0) ip = dm_ifaddrs_get_global_ipv6(l3_device); else ip = dm_ioctl_get_ipv4(l3_device); if (DM_STRLEN(ip) && DM_STRLEN(port)) dmasprintf(listen_addr, !DM_STRCMP(ip_version, "6") ? "[%s]:%s" : "%s:%s", ip, port); } /*#Device.ManagementServer.ConnectionRequestURL!UCI:cwmp/cpe,cpe/port*/ static int get_management_server_connection_request_url(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { char *mgmt_addr = NULL; get_management_ip_port(&mgmt_addr); if (DM_STRLEN(mgmt_addr)) { char *path = NULL; dmuci_get_option_value_string("cwmp", "cpe", "path", &path); if (DM_STRLEN(path) == 0) { dmasprintf(value, "http://%s/", mgmt_addr); } else { if (path[0] == '/') { path = path + 1; // exclude first / } dmasprintf(value, "http://%s/%s", mgmt_addr, path); } } return 0; } static int get_upd_cr_address(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { char *stunc_enabled; bool enabled; dmuci_get_option_value_string("stunc", "stunc", "enabled", &stunc_enabled); enabled = dmuci_string_to_boolean(stunc_enabled); if (enabled == true) dmuci_get_option_value_string_varstate("stun", "stunc", "crudp_address", value); else get_management_ip_port(value); return 0; } /*#Device.ManagementServer.ConnectionRequestUsername!UCI:cwmp/cpe,cpe/userid*/ static int get_management_server_connection_request_username(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_option_value_string("cwmp", "cpe", "userid", value); return 0; } static int set_management_server_connection_request_username(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_string(ctx, value, -1, 256, NULL, NULL)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "cpe", "userid", value); return 0; } return 0; } /*#Device.ManagementServer.ConnectionRequestPassword!UCI:cwmp/cpe,cpe/passwd*/ static int set_management_server_connection_request_passwd(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_string(ctx, value, -1, 256, NULL, NULL)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "cpe", "passwd", value); return 0; } return 0; } /*#Device.ManagementServer.UpgradesManaged!UCI:cwmp/cpe,cpe/upgrades_managed*/ static int get_upgrades_managed(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmuci_get_option_value_fallback_def("cwmp", "cpe", "upgrades_managed", "false"); return 0; } static int set_upgrades_managed(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_boolean(ctx, value)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "cpe", "upgrades_managed", value); return 0; } return 0; } static int get_lwn_protocol_supported(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmstrdup("UDP"); return 0; } /*#Device.ManagementServer.LightweightNotificationProtocolsUsed!UCI:cwmp/lwn,lwn/enable*/ static int get_lwn_protocol_used(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { bool b; char *tmp; dmuci_get_option_value_string("cwmp", "lwn", "enable", &tmp); string_to_bool(tmp, &b); *value = b ? "UDP" : ""; return 0; } static int set_lwn_protocol_used(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_string_list(ctx, value, -1, -1, -1, -1, -1, NULL, NULL)) return FAULT_9007; return 0; case VALUESET: if (DM_LSTRCMP(value,"UDP") == 0) dmuci_set_value("cwmp", "lwn", "enable", "1"); else dmuci_set_value("cwmp", "lwn", "enable", "0"); return 0; } return 0; } /*#Device.ManagementServer.UDPLightweightNotificationHost!UCI:cwmp/lwn,lwn/hostname*/ static int get_lwn_host(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_option_value_string("cwmp", "lwn", "hostname", value); return 0; } static int set_lwn_host(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_string(ctx, value, -1, 256, NULL, NULL)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "lwn", "hostname", value); return 0; } return 0; } /*#Device.ManagementServer.UDPLightweightNotificationPort!UCI:cwmp/lwn,lwn/port*/ static int get_lwn_port(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmuci_get_option_value_fallback_def("cwmp", "lwn", "port", "7547"); return 0; } static int set_lwn_port(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_unsignedInt(ctx, value, RANGE_ARGS{{NULL,NULL}}, 1)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "lwn", "port", value); return 0; } return 0; } static int get_management_server_http_compression_supportted(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmstrdup("GZIP,Deflate"); return 0; } /*#Device.ManagementServer.HTTPCompression!UCI:cwmp/acs,acs/compression*/ static int get_management_server_http_compression(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_option_value_string("cwmp", "acs", "compression", value); return 0; } static int set_management_server_http_compression(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_string(ctx, value, -1, -1, NULL, NULL)) return FAULT_9007; return 0; case VALUESET: if (strcasecmp(value, "gzip") == 0 || strcasecmp(value, "deflate") == 0 || strncasecmp(value, "disable", 7) == 0) { dmuci_set_value("cwmp", "acs", "compression", value); } return 0; } return 0; } /*#Device.ManagementServer.CWMPRetryMinimumWaitInterval!UCI:cwmp/acs,acs/retry_min_wait_interval*/ static int get_management_server_retry_min_wait_interval(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { char *dhcp = NULL, *dhcp_retry_min_wait_interval = NULL; bool discovery = false; dmuci_get_option_value_string("cwmp", "acs", "dhcp_discovery", &dhcp); dmuci_get_option_value_string("cwmp", "acs", "dhcp_retry_min_wait_interval", &dhcp_retry_min_wait_interval); discovery = dmuci_string_to_boolean(dhcp); if ((discovery == true) && (DM_STRLEN(dhcp_retry_min_wait_interval) != 0)) *value = dhcp_retry_min_wait_interval; else *value = dmuci_get_option_value_fallback_def("cwmp", "acs", "retry_min_wait_interval", "5"); return 0; } static int set_management_server_retry_min_wait_interval(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_unsignedInt(ctx, value, RANGE_ARGS{{"1","65535"}}, 1)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "acs", "retry_min_wait_interval", value); return 0; } return 0; } /*#Device.ManagementServer.CWMPRetryIntervalMultiplier!UCI:cwmp/acs,acs/retry_interval_multiplier*/ static int get_management_server_retry_interval_multiplier(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { char *dhcp = NULL, *dhcp_retry_interval_multiplier = NULL; bool discovery = false; dmuci_get_option_value_string("cwmp", "acs", "dhcp_discovery", &dhcp); dmuci_get_option_value_string("cwmp", "acs", "dhcp_retry_interval_multiplier", &dhcp_retry_interval_multiplier); discovery = dmuci_string_to_boolean(dhcp); if ((discovery == true) && (DM_STRLEN(dhcp_retry_interval_multiplier) != 0)) *value = dhcp_retry_interval_multiplier; else *value = dmuci_get_option_value_fallback_def("cwmp", "acs", "retry_interval_multiplier", "2000"); return 0; } static int set_management_server_retry_interval_multiplier(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_unsignedInt(ctx, value, RANGE_ARGS{{"1000","65535"}}, 1)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "acs", "retry_interval_multiplier", value); return 0; } return 0; } /*#Device.ManagementServer.AliasBasedAddressing!UCI:cwmp/cpe,cpe/amd_version*/ static int get_alias_based_addressing(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { char *res = dmuci_get_option_value_fallback_def("cwmp", "cpe", "amd_version", "5"); *value = (DM_STRTOL(res) <= 4) ? "false" : "true"; return 0; } /*#Device.ManagementServer.InstanceMode!UCI:cwmp/cpe,cpe/instance_mode*/ static int get_instance_mode(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmuci_get_option_value_fallback_def("cwmp", "cpe", "instance_mode", "InstanceNumber"); return 0; } static int set_instance_mode(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { char *InstanceMode[] = {"InstanceNumber", "InstanceAlias", NULL}; switch (action) { case VALUECHECK: if (bbfdm_validate_string(ctx, value, -1, -1, InstanceMode, NULL)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "cpe", "instance_mode", value); return 0; } return 0; } static int get_management_server_supported_conn_req_methods(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmstrdup("HTTP,XMPP,STUN"); return 0; } static int get_management_server_instance_wildcard_supported(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmstrdup("true"); return 0; } static int get_management_server_enable_cwmp(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmuci_get_option_value_fallback_def("cwmp", "cpe", "enable", "1"); return 0; } static int set_management_server_enable_cwmp(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { bool b; switch (action) { case VALUECHECK: if (bbfdm_validate_boolean(ctx, value)) return FAULT_9007; return 0; case VALUESET: string_to_bool(value, &b); dmuci_set_value("cwmp", "cpe", "enable", b ? "1" : "0"); return 0; } return 0; } static int get_nat_detected(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { char *v; bool en = 0; dmuci_get_option_value_string("stunc", "stunc", "enabled", &v); en = dmuci_string_to_boolean(v); if (en == true) { //stunc is enabled dmuci_get_option_value_string_varstate("stun", "stunc", "nat_detected", &v); en = dmuci_string_to_boolean(v); *value = (en == true) ? "1" : "0"; } else { *value = dmstrdup("0"); } return 0; } static int get_manageable_device_number_of_entries(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { int cnt = get_number_of_entries(ctx, data, instance, browseManageableDevice); dmasprintf(value, "%d", cnt); return 0; } static int get_default_active_notification_throttle(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmuci_get_option_value_fallback_def("cwmp", "cpe", "active_notif_throttle", "0"); return 0; } static int set_default_active_notification_throttle(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_unsignedInt(ctx, value, RANGE_ARGS{{"1",NULL}}, 1)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "cpe", "active_notif_throttle", value); return 0; } return 0; } static int get_manageable_device_notification_limit(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmuci_get_option_value_fallback_def("cwmp", "cpe", "md_notif_limit", "0"); return 0; } static int set_manageable_device_notification_limit(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_unsignedInt(ctx, value, RANGE_ARGS{{"0",NULL}}, 1)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "cpe", "md_notif_limit", value); return 0; } return 0; } #ifdef ICWMP_ENABLE_VENDOR_EXTN static int get_allowed_cr_ip(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { struct uci_list *uci_opt_list = NULL; dmuci_get_option_value_list("cwmp", "cpe", "allowed_cr_ip", &uci_opt_list); *value = dmuci_list_to_string(uci_opt_list, ","); return 0; } static int set_allowed_cr_ip(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { size_t length, i; int ret = 0; char **arr; switch (action) { case VALUECHECK: if (bbfdm_validate_string(ctx, value, -1, -1, NULL, NULL)) ret = FAULT_9007; break; case VALUESET: dmuci_delete("cwmp", "cpe", "allowed_cr_ip", NULL); arr = strsplit(value, ",", &length); for (i = 0; i < length; i++) { dmuci_add_list_value("cwmp", "cpe", "allowed_cr_ip", arr[i]); } break; } return ret; } #endif static int get_heart_beat_policy_enable(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmuci_get_option_value_fallback_def("cwmp", "acs", "heartbeat_enable", "0"); return 0; } static int set_heart_beat_policy_enable(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_boolean(ctx, value)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "acs", "heartbeat_enable", value); return 0; } return 0; } static int get_heart_beat_policy_reporting_interval(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmuci_get_option_value_fallback_def("cwmp", "acs", "heartbeat_interval", "30"); return 0; } static int set_heart_beat_policy_reporting_interval(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_unsignedInt(ctx, value, RANGE_ARGS{{"20",NULL}}, 1)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "acs", "heartbeat_interval", value); return 0; } return 0; } static int get_heart_beat_policy_initiation_time(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_option_value_string("cwmp", "acs", "heartbeat_time", value); return 0; } static int set_heart_beat_policy_initiation_time(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_dateTime(ctx, value)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value("cwmp", "acs", "heartbeat_time", value); return 0; } return 0; } static int browseInformParameterInst(struct dmctx *dmctx, DMNODE *parent_node, void *prev_data, char *prev_instance) { struct dm_data *curr_data = NULL; char *inst = NULL; LIST_HEAD(dup_list); synchronize_specific_config_sections_with_dmmap("cwmp", "inform_parameter", "dmmap_cwmp", &dup_list); list_for_each_entry(curr_data, &dup_list, list) { inst = handle_instance(dmctx, parent_node, curr_data->dmmap_section, "informparam_instance", "informparam_alias"); if (DM_LINK_INST_OBJ(dmctx, parent_node, curr_data, inst) == DM_STOP) break; } free_dmmap_config_dup_list(&dup_list); return 0; } static int add_inform_parameter(char *refparam, struct dmctx *ctx, void *data, char **instance) { struct uci_section *s = NULL, *dmmap = NULL; dmuci_add_section("cwmp", "inform_parameter", &s); dmuci_set_value_by_section(s, "enable", "0"); dmuci_add_section_bbfdm("dmmap_cwmp", "inform_parameter", &dmmap); dmuci_set_value_by_section(dmmap, "section_name", section_name(s)); dmuci_set_value_by_section(dmmap, "informparam_instance", *instance); return 0; } static int delete_inform_parameter(char *refparam, struct dmctx *ctx, void *data, char *instance, unsigned char del_action) { struct uci_section *s = NULL, *stmp = NULL; switch (del_action) { case DEL_INST: dmuci_delete_by_section(((struct dm_data *)data)->config_section, NULL, NULL); dmuci_delete_by_section(((struct dm_data *)data)->dmmap_section, NULL, NULL); break; case DEL_ALL: uci_foreach_sections_safe("cwmp", "inform_parameter", stmp, s) { struct uci_section *dmmap_section = NULL; get_dmmap_section_of_config_section("dmmap_cwmp", "inform_parameter", section_name(s), &dmmap_section); dmuci_delete_by_section(dmmap_section, NULL, NULL); dmuci_delete_by_section(s, NULL, NULL); } return 0; } return 0; } static int get_inform_parameter_enable(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_value_by_section_string(((struct dm_data *)data)->config_section, "enable", value); return 0; } static int set_inform_parameter_enable(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_boolean(ctx, value)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value_by_section(((struct dm_data *)data)->config_section, "enable", value); return 0; } return 0; } static int get_inform_parameter_alias(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { return bbf_get_alias(ctx, ((struct dm_data *)data)->dmmap_section, "informparam_alias", instance, value); } static int set_inform_parameter_alias(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { return bbf_set_alias(ctx, ((struct dm_data *)data)->dmmap_section, "informparam_alias", instance, value); } static int get_inform_parameter_parameter_name(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_value_by_section_string(((struct dm_data *)data)->config_section, "parameter_name", value); return 0; } static int set_inform_parameter_parameter_name(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_string_list(ctx, value, -1, -1, -1, -1, -1, Forced_Inform_Parmeters, NULL) == 0) return FAULT_9007; return 0; case VALUESET: dmuci_set_value_by_section(((struct dm_data *)data)->config_section, "parameter_name", value); return 0; } return 0; } static int get_inform_parameter_event_list(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_value_by_section_string(((struct dm_data *)data)->config_section, "events_list", value); return 0; } static int set_inform_parameter_event_list(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { switch (action) { case VALUECHECK: if (bbfdm_validate_string_list(ctx, value, -1, -1, -1, -1, -1, CWMP_EVENTS, NULL)) return FAULT_9007; return 0; case VALUESET: dmuci_set_value_by_section(((struct dm_data *)data)->config_section, "events_list", value); return 0; } return 0; } static int get_inform_parameter_number_of_entries(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { int cnt = get_number_of_entries(ctx, data, instance, browseInformParameterInst); dmasprintf(value, "%d", cnt); return 0; } static int get_manageable_device_oui(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { struct manageable_device_args *device = (struct manageable_device_args *)data; *value = dmstrdup(device->oui); return 0; } static int get_manageable_device_serial(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { struct manageable_device_args *device = (struct manageable_device_args *)data; *value = dmstrdup(device->serial); return 0; } static int get_manageable_device_class(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { struct manageable_device_args *device = (struct manageable_device_args *)data; *value = (DM_STRCMP(device->class, "-") != 0) ? dmstrdup(device->class) : ""; return 0; } static int get_manageable_device_host(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { struct manageable_device_args *device = (struct manageable_device_args *)data; return _bbfdm_get_references(ctx, "Device.Hosts.Host.", "PhysAddress", device->mac, value); } static int get_transfer_compl_policy_enable(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmuci_get_option_value_fallback_def("cwmp", TRANSFER_COMPL_SEC_NAME, "enable", "0"); return 0; } static int get_transfer_compl_policy_type_filter(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_option_value_string("cwmp", TRANSFER_COMPL_SEC_NAME, "transfer_type", value); if (DM_STRLEN(*value) == 0) *value = dmstrdup("Both"); return 0; } static int get_transfer_compl_policy_result_type_filter(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_option_value_string("cwmp", TRANSFER_COMPL_SEC_NAME, "result_type", value); if (DM_STRLEN(*value) == 0) *value = dmstrdup("Both"); return 0; } static int get_transfer_compl_policy_file_type_filter(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_option_value_string("cwmp", TRANSFER_COMPL_SEC_NAME, "file_type", value); return 0; } static int set_transfer_compl_policy_enable(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { bool b; struct uci_section *s = NULL; switch (action) { case VALUECHECK: if (bbfdm_validate_boolean(ctx, value)) return FAULT_9007; return 0; case VALUESET: string_to_bool(value, &b); s = get_autonomous_notify_section(TRANSFER_COMPL_SEC_NAME); dmuci_set_value_by_section(s, "enable", b ? "1" : "0"); return 0; } return 0; } static int set_transfer_compl_policy_type_filter(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { struct uci_section *s = NULL; switch (action) { case VALUECHECK: if (bbfdm_validate_string_list(ctx, value, -1, -1, -1, -1, -1, TCTransferType, NULL)) return FAULT_9007; return 0; case VALUESET: s = get_autonomous_notify_section(TRANSFER_COMPL_SEC_NAME); dmuci_set_value_by_section(s, "transfer_type", value); return 0; } return 0; } static int set_transfer_compl_policy_result_type_filter(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { struct uci_section *s = NULL; switch (action) { case VALUECHECK: if (bbfdm_validate_string(ctx, value, -1, -1, TCResultType, NULL)) return FAULT_9007; return 0; case VALUESET: s = get_autonomous_notify_section(TRANSFER_COMPL_SEC_NAME); dmuci_set_value_by_section(s, "result_type", value); return 0; } return 0; } static int set_transfer_compl_policy_file_type_filter(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { struct uci_section *s = NULL; switch (action) { case VALUECHECK: if (bbfdm_validate_string_list(ctx, value, -1, -1, -1, -1, -1, TCFileType, NULL)) return FAULT_9007; return 0; case VALUESET: s = get_autonomous_notify_section(TRANSFER_COMPL_SEC_NAME); dmuci_set_value_by_section(s, "file_type", value); return 0; } return 0; } static int get_du_state_change_compl_policy_enable(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { *value = dmuci_get_option_value_fallback_def("cwmp", DU_STATE_CHANGE_SEC_NAME, "enable", "0"); return 0; } static int get_du_state_change_compl_policy_operation_type_filter(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_option_value_string("cwmp", DU_STATE_CHANGE_SEC_NAME, "operation_type", value); return 0; } static int get_du_state_change_compl_policy_result_type_filter(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_option_value_string("cwmp", DU_STATE_CHANGE_SEC_NAME, "result_type", value); if (DM_STRLEN(*value) == 0) *value = dmstrdup("Both"); return 0; } static int get_du_state_change_compl_policy_fault_code_filter(char *refparam, struct dmctx *ctx, void *data, char *instance, char **value) { dmuci_get_option_value_string("cwmp", DU_STATE_CHANGE_SEC_NAME, "fault_code", value); return 0; } static int set_du_state_change_compl_policy_enable(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { bool b; struct uci_section *s = NULL; switch (action) { case VALUECHECK: if (bbfdm_validate_boolean(ctx, value)) return FAULT_9007; return 0; case VALUESET: string_to_bool(value, &b); s = get_autonomous_notify_section(DU_STATE_CHANGE_SEC_NAME); dmuci_set_value_by_section(s, "enable", b ? "1" : "0"); return 0; } return 0; } static int set_du_state_change_compl_policy_operation_type_filter(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { struct uci_section *s = NULL; switch (action) { case VALUECHECK: if (bbfdm_validate_string_list(ctx, value, -1, -1, -1, -1, -1, DUStateOperationType, NULL)) return FAULT_9007; return 0; case VALUESET: s = get_autonomous_notify_section(DU_STATE_CHANGE_SEC_NAME); dmuci_set_value_by_section(s, "operation_type", value); return 0; } return 0; } static int set_du_state_change_compl_policy_result_type_filter(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { struct uci_section *s = NULL; switch (action) { case VALUECHECK: if (bbfdm_validate_string(ctx, value, -1, -1, DUStateResultType, NULL)) return FAULT_9007; return 0; case VALUESET: s = get_autonomous_notify_section(DU_STATE_CHANGE_SEC_NAME); dmuci_set_value_by_section(s, "result_type", value); return 0; } return 0; } static int set_du_state_change_compl_policy_fault_code_filter(char *refparam, struct dmctx *ctx, void *data, char *instance, char *value, int action) { struct uci_section *s = NULL; switch (action) { case VALUECHECK: if (bbfdm_validate_string_list(ctx, value, -1, -1, -1, -1, -1, DUStateFaultCode, NULL)) return FAULT_9007; return 0; case VALUESET: s = get_autonomous_notify_section(DU_STATE_CHANGE_SEC_NAME); dmuci_set_value_by_section(s, "fault_code", value); return 0; } return 0; } /********************************************************************************************************************************** * OBJ & PARAM DEFINITION ***********************************************************************************************************************************/ /* ********** DynamicObj ********** */ DM_MAP_OBJ tDynamicObj[] = { /* parentobj, nextobject, parameter */ {"Device.", tCWMPObj, NULL}, {0} }; /*** Device. ***/ DMOBJ tCWMPObj[] = { /* OBJ, permission, addobj, delobj, checkdep, browseinstobj, nextdynamicobj, dynamicleaf, nextobj, leaf, linker, bbfdm_type, uniqueKeys*/ {"ManagementServer", &DMREAD, NULL, NULL, NULL, NULL, NULL, NULL, tManagementServerObj, tManagementServerParams, NULL, CWMP_DUAL_SUPPORT}, {"CWMPManagementServer", &DMREAD, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, BBFDM_USP}, {"XMPP", &DMREAD, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, BBFDM_CWMP}, {0} }; /*** Device.ManagementServer. ***/ DMOBJ tManagementServerObj[] = { /* OBJ, permission, addobj, delobj, checkdep, browseinstobj, nextdynamicobj, dynamicleaf, nextobj, leaf, linker, bbfdm_type, uniqueKeys, version*/ {"HeartbeatPolicy", &DMREAD, NULL, NULL, NULL, NULL, NULL, NULL, NULL, tHeartbeatPolicyParams, NULL, BBFDM_CWMP, NULL}, {"ManageableDevice", &DMREAD, NULL, NULL, NULL, browseManageableDevice, NULL, NULL, NULL, tManageableDeviceParams, NULL, BBFDM_CWMP, NULL}, {"InformParameter", &DMWRITE, add_inform_parameter, delete_inform_parameter, NULL, browseInformParameterInst, NULL, NULL, NULL, tInformParameterParams, NULL, BBFDM_CWMP, NULL}, {"AutonomousTransferCompletePolicy", &DMREAD, NULL, NULL, "file:/etc/config/cwmp", NULL, NULL, NULL, NULL, tTransferComplPolicyParams, NULL, BBFDM_CWMP, NULL}, {"DUStateChangeComplPolicy", &DMREAD, NULL, NULL, "file:/etc/config/swmodd", NULL, NULL, NULL, NULL, tDUStateChangeComplPolicyParams, NULL, BBFDM_CWMP, NULL}, {0} }; DMLEAF tManagementServerParams[] = { /* PARAM, permission, type, getvalue, setvalue, bbfdm_type, version*/ {"URL", &DMWRITE, DMT_STRING, get_management_server_url, set_management_server_url, CWMP_DUAL_SUPPORT}, {"Username", &DMWRITE, DMT_STRING, get_management_server_username, set_management_server_username, CWMP_DUAL_SUPPORT}, {"Password", &DMWRITE, DMT_STRING, get_empty, set_management_server_passwd, CWMP_DUAL_SUPPORT}, {"ScheduleReboot", &DMWRITE, DMT_TIME, get_management_server_schedule_reboot, set_management_server_schedule_reboot, BBFDM_CWMP}, {"DelayReboot", &DMWRITE, DMT_INT, get_management_server_delay_reboot, set_management_server_delay_reboot, BBFDM_CWMP}, {"PeriodicInformEnable", &DMWRITE, DMT_BOOL, get_management_server_periodic_inform_enable, set_management_server_periodic_inform_enable, CWMP_DUAL_SUPPORT}, {"PeriodicInformInterval", &DMWRITE, DMT_UNINT, get_management_server_periodic_inform_interval, set_management_server_periodic_inform_interval, CWMP_DUAL_SUPPORT}, {"PeriodicInformTime", &DMWRITE, DMT_TIME, get_management_server_periodic_inform_time, set_management_server_periodic_inform_time, BBFDM_CWMP}, {"ParameterKey", &DMREAD, DMT_STRING, get_management_server_key, NULL, BBFDM_CWMP}, {"ConnectionRequestURL", &DMREAD, DMT_STRING, get_management_server_connection_request_url, NULL, BBFDM_CWMP}, {"ConnectionRequestUsername", &DMWRITE, DMT_STRING, get_management_server_connection_request_username, set_management_server_connection_request_username, BBFDM_CWMP}, {"ConnectionRequestPassword", &DMWRITE, DMT_STRING, get_empty, set_management_server_connection_request_passwd, BBFDM_CWMP}, {"UpgradesManaged", &DMWRITE, DMT_BOOL, get_upgrades_managed, set_upgrades_managed, BBFDM_CWMP}, {"HTTPCompressionSupported", &DMREAD, DMT_STRING, get_management_server_http_compression_supportted, NULL, BBFDM_CWMP}, {"HTTPCompression", &DMWRITE, DMT_STRING, get_management_server_http_compression, set_management_server_http_compression, BBFDM_CWMP}, {"LightweightNotificationProtocolsSupported", &DMREAD, DMT_STRING, get_lwn_protocol_supported, NULL, BBFDM_CWMP}, {"LightweightNotificationProtocolsUsed", &DMWRITE, DMT_STRING, get_lwn_protocol_used, set_lwn_protocol_used, BBFDM_CWMP}, {"UDPLightweightNotificationHost", &DMWRITE, DMT_STRING, get_lwn_host, set_lwn_host, BBFDM_CWMP}, {"UDPLightweightNotificationPort", &DMWRITE, DMT_UNINT, get_lwn_port, set_lwn_port, BBFDM_CWMP}, {"CWMPRetryMinimumWaitInterval", &DMWRITE, DMT_UNINT, get_management_server_retry_min_wait_interval, set_management_server_retry_min_wait_interval, BBFDM_CWMP}, {"CWMPRetryIntervalMultiplier", &DMWRITE, DMT_UNINT, get_management_server_retry_interval_multiplier, set_management_server_retry_interval_multiplier, BBFDM_CWMP}, {"AliasBasedAddressing", &DMREAD, DMT_BOOL, get_alias_based_addressing, NULL, BBFDM_CWMP}, {"InstanceMode", &DMWRITE, DMT_STRING, get_instance_mode, set_instance_mode, BBFDM_CWMP}, {"SupportedConnReqMethods", &DMREAD, DMT_STRING, get_management_server_supported_conn_req_methods, NULL, BBFDM_CWMP}, {"InstanceWildcardsSupported", &DMREAD, DMT_BOOL, get_management_server_instance_wildcard_supported, NULL, BBFDM_CWMP}, {"EnableCWMP", &DMWRITE, DMT_BOOL, get_management_server_enable_cwmp, set_management_server_enable_cwmp, CWMP_DUAL_SUPPORT}, {"UDPConnectionRequestAddress", &DMREAD, DMT_STRING, get_upd_cr_address, NULL, BBFDM_CWMP}, {"NATDetected", &DMREAD, DMT_BOOL, get_nat_detected, NULL, BBFDM_CWMP}, {"InformParameterNumberOfEntries", &DMREAD, DMT_UNINT, get_inform_parameter_number_of_entries, NULL, BBFDM_CWMP}, {"ManageableDeviceNumberOfEntries", &DMREAD, DMT_UNINT, get_manageable_device_number_of_entries, NULL, BBFDM_CWMP}, {"DefaultActiveNotificationThrottle", &DMWRITE, DMT_UNINT, get_default_active_notification_throttle, set_default_active_notification_throttle, BBFDM_CWMP}, {"ManageableDeviceNotificationLimit", &DMWRITE, DMT_UNINT, get_manageable_device_notification_limit, set_manageable_device_notification_limit, BBFDM_CWMP}, #ifdef ICWMP_ENABLE_VENDOR_EXTN {BBF_VENDOR_PREFIX"AllowedConnectionRequestIP", &DMWRITE, DMT_STRING, get_allowed_cr_ip, set_allowed_cr_ip, BBFDM_CWMP}, #endif {0} }; DMLEAF tHeartbeatPolicyParams[] = { {"Enable", &DMWRITE, DMT_BOOL, get_heart_beat_policy_enable, set_heart_beat_policy_enable, BBFDM_CWMP}, {"ReportingInterval", &DMWRITE, DMT_UNINT, get_heart_beat_policy_reporting_interval, set_heart_beat_policy_reporting_interval, BBFDM_CWMP}, {"InitiationTime", &DMWRITE, DMT_TIME, get_heart_beat_policy_initiation_time, set_heart_beat_policy_initiation_time, BBFDM_CWMP}, {0} }; DMLEAF tInformParameterParams[] = { {"Enable", &DMWRITE, DMT_BOOL, get_inform_parameter_enable, set_inform_parameter_enable, BBFDM_CWMP}, {"Alias", &DMWRITE, DMT_STRING, get_inform_parameter_alias, set_inform_parameter_alias, BBFDM_CWMP}, {"ParameterName", &DMWRITE, DMT_STRING, get_inform_parameter_parameter_name, set_inform_parameter_parameter_name, BBFDM_CWMP}, {"EventList", &DMWRITE, DMT_STRING, get_inform_parameter_event_list, set_inform_parameter_event_list, BBFDM_CWMP}, {0} }; DMLEAF tManageableDeviceParams[] = { {"ManufacturerOUI", &DMREAD, DMT_STRING, get_manageable_device_oui, NULL, BBFDM_CWMP}, {"SerialNumber", &DMREAD, DMT_STRING, get_manageable_device_serial, NULL, BBFDM_CWMP}, {"ProductClass", &DMREAD, DMT_STRING, get_manageable_device_class, NULL, BBFDM_CWMP}, {"Host", &DMREAD, DMT_STRING, get_manageable_device_host, NULL, BBFDM_CWMP, DM_FLAG_REFERENCE}, {0} }; DMLEAF tTransferComplPolicyParams[] = { {"Enable", &DMWRITE, DMT_BOOL, get_transfer_compl_policy_enable, set_transfer_compl_policy_enable, BBFDM_CWMP}, {"TransferTypeFilter", &DMWRITE, DMT_STRING, get_transfer_compl_policy_type_filter, set_transfer_compl_policy_type_filter, BBFDM_CWMP}, {"ResultTypeFilter", &DMWRITE, DMT_STRING, get_transfer_compl_policy_result_type_filter, set_transfer_compl_policy_result_type_filter, BBFDM_CWMP}, {"FileTypeFilter", &DMWRITE, DMT_STRING, get_transfer_compl_policy_file_type_filter, set_transfer_compl_policy_file_type_filter, BBFDM_CWMP}, {0} }; DMLEAF tDUStateChangeComplPolicyParams[] = { {"Enable", &DMWRITE, DMT_BOOL, get_du_state_change_compl_policy_enable, set_du_state_change_compl_policy_enable, BBFDM_CWMP}, {"OperationTypeFilter", &DMWRITE, DMT_STRING, get_du_state_change_compl_policy_operation_type_filter, set_du_state_change_compl_policy_operation_type_filter, BBFDM_CWMP}, {"ResultTypeFilter", &DMWRITE, DMT_STRING, get_du_state_change_compl_policy_result_type_filter, set_du_state_change_compl_policy_result_type_filter, BBFDM_CWMP}, {"FaultCodeFilter", &DMWRITE, DMT_STRING, get_du_state_change_compl_policy_fault_code_filter, set_du_state_change_compl_policy_fault_code_filter, BBFDM_CWMP}, {0} };