summaryrefslogtreecommitdiff
path: root/cfg/src
diff options
context:
space:
mode:
authorDustin Brown <dustinb@codeaurora.org>2018-02-22 16:51:58 -0800
committernshrivas <nshrivas@codeaurora.org>2018-03-20 20:02:22 -0700
commit950ceeeb806a313336164ff4668ca03b2a2d943d (patch)
tree13f314a1287a06d48b083307d6bde955fd4f4e2c /cfg/src
parent00e22124e6ae240f8cbe05de7ea690c79a287378 (diff)
downloadqca-wfi-host-cmn-950ceeeb806a313336164ff4668ca03b2a2d943d.tar.gz
qcacmn: Add configuration component implementation
Add the implementation for the new configuration component. Change-Id: If94e9b4015a7c43674112925206b54a33bd3e340 CRs-Fixed: 2196022
Diffstat (limited to 'cfg/src')
-rw-r--r--cfg/src/cfg.c714
1 files changed, 714 insertions, 0 deletions
diff --git a/cfg/src/cfg.c b/cfg/src/cfg.c
new file mode 100644
index 000000000..33c6465c8
--- /dev/null
+++ b/cfg/src/cfg.c
@@ -0,0 +1,714 @@
+/*
+ * Copyright (c) 2018 The Linux Foundation. All rights reserved.
+ *
+ * Permission to use, copy, modify, and/or distribute this software for
+ * any purpose with or without fee is hereby granted, provided that the
+ * above copyright notice and this permission notice appear in all
+ * copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
+ * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
+ * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
+ * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
+ * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+ * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+ * PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include "cfg_all.h"
+#include "cfg_define.h"
+#include "cfg_dispatcher.h"
+#include "cfg_ucfg_api.h"
+#include "i_cfg.h"
+#include "i_cfg_objmgr.h"
+#include "qdf_atomic.h"
+#include "qdf_list.h"
+#include "qdf_mem.h"
+#include "qdf_module.h"
+#include "qdf_parse.h"
+#include "qdf_status.h"
+#include "qdf_str.h"
+#include "qdf_trace.h"
+#include "qdf_types.h"
+#include "wlan_objmgr_psoc_obj.h"
+
+/**
+ * struct cfg_value_store - backing store for an ini file
+ * @path: file path of the ini file
+ * @node: internal list node for keeping track of all the allocated stores
+ * @users: number of references on the store
+ * @values: a values struct containing the parsed values from the ini file
+ */
+struct cfg_value_store {
+ char *path;
+ qdf_list_node_t node;
+ qdf_atomic_t users;
+ struct cfg_values values;
+};
+
+/* define/populate dynamic metadata lookup table */
+
+/**
+ * struct cfg_meta - configuration item metadata for dynamic lookup during parse
+ * @name: name of the config item used in the ini file (i.e. "gScanDwellTime")
+ * @item_handler: parsing callback based on the type of the config item
+ * @min: minimum value for use in bounds checking (min_len for strings)
+ * @max: maximum value for use in bounds checking (max_len for strings)
+ * @fallback: the fallback behavior to use when configured values are invalid
+ */
+struct cfg_meta {
+ const char *name;
+ const uint32_t field_offset;
+ void (*const item_handler)(struct cfg_value_store *store,
+ const struct cfg_meta *meta,
+ const char *value);
+ const int32_t min;
+ const int32_t max;
+ const enum cfg_fallback_behavior fallback;
+};
+
+/* ini item handler functions */
+
+#define cfg_value_ptr(store, meta) \
+ ((void *)&(store)->values + (meta)->field_offset)
+
+static void cfg_int_item_handler(struct cfg_value_store *store,
+ const struct cfg_meta *meta,
+ const char *str_value)
+{
+ QDF_STATUS status;
+ int32_t *store_value = cfg_value_ptr(store, meta);
+ int32_t value;
+
+ status = qdf_int32_parse(str_value, &value);
+ if (QDF_IS_STATUS_ERROR(status)) {
+ cfg_err("%s=%s - Invalid format (status %d); Using default %d",
+ meta->name, str_value, status, *store_value);
+ return;
+ }
+
+ QDF_BUG(meta->min <= meta->max);
+ if (meta->min > meta->max) {
+ cfg_err("Invalid config item meta for %s", meta->name);
+ return;
+ }
+
+ if (value >= meta->min && value <= meta->max) {
+ *store_value = value;
+ return;
+ }
+
+ switch (meta->fallback) {
+ default:
+ QDF_DEBUG_PANIC();
+ /* fall through */
+ case CFG_VALUE_OR_DEFAULT:
+ /* store already contains default */
+ break;
+ case CFG_VALUE_OR_CLAMP:
+ *store_value = __cfg_clamp(value, meta->min, meta->max);
+ break;
+ }
+
+ cfg_err("%s=%d - Out of range [%d, %d]; Using %d",
+ meta->name, value, meta->min, meta->max, *store_value);
+}
+
+static void cfg_uint_item_handler(struct cfg_value_store *store,
+ const struct cfg_meta *meta,
+ const char *str_value)
+{
+ QDF_STATUS status;
+ uint32_t *store_value = cfg_value_ptr(store, meta);
+ uint32_t value;
+
+ status = qdf_uint32_parse(str_value, &value);
+ if (QDF_IS_STATUS_ERROR(status)) {
+ cfg_err("%s=%s - Invalid format (status %d); Using default %u",
+ meta->name, str_value, status, *store_value);
+ return;
+ }
+
+ QDF_BUG(meta->min >= 0);
+ QDF_BUG(meta->min <= meta->max);
+ if (meta->min < 0 || meta->min > meta->max) {
+ cfg_err("Invalid config item meta for %s", meta->name);
+ return;
+ }
+
+ if (value >= meta->min && value <= meta->max) {
+ *store_value = value;
+ return;
+ }
+
+ switch (meta->fallback) {
+ default:
+ QDF_DEBUG_PANIC();
+ /* fall through */
+ case CFG_VALUE_OR_DEFAULT:
+ /* store already contains default */
+ break;
+ case CFG_VALUE_OR_CLAMP:
+ *store_value = __cfg_clamp(value, meta->min, meta->max);
+ break;
+ }
+
+ cfg_err("%s=%u - Out of range [%d, %d]; Using %u",
+ meta->name, value, meta->min, meta->max, *store_value);
+}
+
+static void cfg_bool_item_handler(struct cfg_value_store *store,
+ const struct cfg_meta *meta,
+ const char *str_value)
+{
+ QDF_STATUS status;
+ bool *store_value = cfg_value_ptr(store, meta);
+
+ status = qdf_bool_parse(str_value, store_value);
+ if (QDF_IS_STATUS_SUCCESS(status))
+ return;
+
+ cfg_err("%s=%s - Invalid format (status %d); Using default '%s'",
+ meta->name, str_value, status, *store_value ? "true" : "false");
+}
+
+static void cfg_string_item_handler(struct cfg_value_store *store,
+ const struct cfg_meta *meta,
+ const char *str_value)
+{
+ char *store_value = cfg_value_ptr(store, meta);
+ qdf_size_t len;
+
+ QDF_BUG(meta->min >= 0);
+ QDF_BUG(meta->min <= meta->max);
+ if (meta->min < 0 || meta->min > meta->max) {
+ cfg_err("Invalid config item meta for %s", meta->name);
+ return;
+ }
+
+ /* ensure min length */
+ len = qdf_str_nlen(str_value, meta->min);
+ if (len < meta->min) {
+ cfg_err("%s=%s - Too short; Using default '%s'",
+ meta->name, str_value, store_value);
+ return;
+ }
+
+ /* check max length */
+ len += qdf_str_nlen(str_value + meta->min, meta->max - meta->min + 1);
+ if (len > meta->max) {
+ cfg_err("%s=%s - Too long; Using default '%s'",
+ meta->name, str_value, store_value);
+ return;
+ }
+
+ qdf_str_lcopy(store_value, str_value, meta->max + 1);
+}
+
+static void cfg_mac_item_handler(struct cfg_value_store *store,
+ const struct cfg_meta *meta,
+ const char *str_value)
+{
+ QDF_STATUS status;
+ struct qdf_mac_addr *store_value = cfg_value_ptr(store, meta);
+
+ status = qdf_mac_parse(str_value, store_value);
+ if (QDF_IS_STATUS_SUCCESS(status))
+ return;
+
+ cfg_err("%s=%s - Invalid format (status %d); Using default "
+ QDF_MAC_ADDR_STR, meta->name, str_value, status,
+ QDF_MAC_ADDR_ARRAY(store_value->bytes));
+}
+
+static void cfg_ipv4_item_handler(struct cfg_value_store *store,
+ const struct cfg_meta *meta,
+ const char *str_value)
+{
+ QDF_STATUS status;
+ struct qdf_ipv4_addr *store_value = cfg_value_ptr(store, meta);
+
+ status = qdf_ipv4_parse(str_value, store_value);
+ if (QDF_IS_STATUS_SUCCESS(status))
+ return;
+
+ cfg_err("%s=%s - Invalid format (status %d); Using default "
+ QDF_IPV4_ADDR_STR, meta->name, str_value, status,
+ QDF_IPV4_ADDR_ARRAY(store_value->bytes));
+}
+
+static void cfg_ipv6_item_handler(struct cfg_value_store *store,
+ const struct cfg_meta *meta,
+ const char *str_value)
+{
+ QDF_STATUS status;
+ struct qdf_ipv6_addr *store_value = cfg_value_ptr(store, meta);
+
+ status = qdf_ipv6_parse(str_value, store_value);
+ if (QDF_IS_STATUS_SUCCESS(status))
+ return;
+
+ cfg_err("%s=%s - Invalid format (status %d); Using default "
+ QDF_IPV6_ADDR_STR, meta->name, str_value, status,
+ QDF_IPV6_ADDR_ARRAY(store_value->bytes));
+}
+
+/* populate metadata lookup table */
+#undef __CFG_ANY
+#define __CFG_ANY(_id, _mtype, _ctype, _name, _min, _max, _fallback, ...) \
+{ \
+ .name = _name, \
+ .field_offset = qdf_offsetof(struct cfg_values, _id##_internal), \
+ .item_handler = cfg_ ## _mtype ## _item_handler, \
+ .min = _min, \
+ .max = _max, \
+ .fallback = _fallback, \
+},
+
+#define cfg_INT_item_handler cfg_int_item_handler
+#define cfg_UINT_item_handler cfg_uint_item_handler
+#define cfg_BOOL_item_handler cfg_bool_item_handler
+#define cfg_STRING_item_handler cfg_string_item_handler
+#define cfg_MAC_item_handler cfg_mac_item_handler
+#define cfg_IPV4_item_handler cfg_ipv4_item_handler
+#define cfg_IPV6_item_handler cfg_ipv6_item_handler
+
+static const struct cfg_meta cfg_meta_lookup_table[] = {
+ CFG_ALL
+};
+
+/* default store initializer */
+
+static void cfg_store_set_defaults(struct cfg_value_store *store)
+{
+#undef __CFG_ANY
+#define __CFG_ANY(id, mtype, ctype, name, min, max, fallback, desc, def...) \
+ ctype id = def;
+
+ CFG_ALL
+
+#undef __CFG_STRING
+#define __CFG_STRING(id, mtype, ctype, name, min_len, max_len, ...) \
+ qdf_str_lcopy((char *)&store->values.id##_internal, id, max_len + 1);
+#undef __CFG_ANY
+#define __CFG_ANY(id, mtype, ctype, name, min, max, fallback, desc, def...) \
+ *(ctype *)&store->values.id##_internal = id;
+
+ CFG_ALL
+}
+
+static const struct cfg_meta *cfg_lookup_meta(const char *name)
+{
+ int i;
+
+ QDF_BUG(name);
+ if (!name)
+ return NULL;
+
+ /* linear search for now; optimize in the future if needed */
+ for (i = 0; i < QDF_ARRAY_SIZE(cfg_meta_lookup_table); i++) {
+ const struct cfg_meta *meta = &cfg_meta_lookup_table[i];
+
+ if (qdf_str_eq(name, meta->name))
+ return meta;
+ }
+
+ return NULL;
+}
+
+static QDF_STATUS
+cfg_ini_item_handler(void *context, const char *key, const char *value)
+{
+ struct cfg_value_store *store = context;
+ const struct cfg_meta *meta;
+
+ meta = cfg_lookup_meta(key);
+ if (!meta) {
+ /* TODO: promote to 'err' or 'warn' once legacy is ported */
+ cfg_info("Unknown config item '%s'", key);
+ return QDF_STATUS_SUCCESS;
+ }
+
+ QDF_BUG(meta->item_handler);
+ if (!meta->item_handler)
+ return QDF_STATUS_SUCCESS;
+
+ meta->item_handler(store, meta, value);
+
+ return QDF_STATUS_SUCCESS;
+}
+
+static QDF_STATUS cfg_ini_section_handler(void *context, const char *name)
+{
+ cfg_err("Unexpected section '%s'. Sections are not supported.", name);
+
+ return QDF_STATUS_SUCCESS;
+}
+
+#define cfg_assert_success(expr) \
+do { \
+ QDF_STATUS __assert_status = (expr); \
+ QDF_BUG(QDF_IS_STATUS_SUCCESS(__assert_status)); \
+} while (0)
+
+static bool __cfg_is_init;
+static struct cfg_value_store *__cfg_global_store;
+static qdf_list_t __cfg_stores_list;
+static qdf_spinlock_t __cfg_stores_lock;
+
+struct cfg_psoc_ctx {
+ struct cfg_value_store *store;
+};
+
+static QDF_STATUS
+cfg_store_alloc(const char *path, struct cfg_value_store **out_store)
+{
+ QDF_STATUS status;
+ struct cfg_value_store *store;
+
+ cfg_enter();
+
+ store = qdf_mem_malloc(sizeof(*store));
+ if (!store) {
+ cfg_err("Out of memory");
+ return QDF_STATUS_E_NOMEM;
+ }
+
+ status = qdf_str_dup(&store->path, path);
+ if (QDF_IS_STATUS_ERROR(status))
+ goto free_store;
+
+ status = qdf_atomic_init(&store->users);
+ if (QDF_IS_STATUS_ERROR(status))
+ goto free_path;
+ qdf_atomic_inc(&store->users);
+
+ qdf_spin_lock_bh(&__cfg_stores_lock);
+ status = qdf_list_insert_back(&__cfg_stores_list, &store->node);
+ qdf_spin_unlock_bh(&__cfg_stores_lock);
+ if (QDF_IS_STATUS_ERROR(status))
+ goto free_path;
+
+ *out_store = store;
+
+ return QDF_STATUS_SUCCESS;
+
+free_path:
+ qdf_mem_free(store->path);
+
+free_store:
+ qdf_mem_free(store);
+
+ return status;
+}
+
+static void cfg_store_free(struct cfg_value_store *store)
+{
+ QDF_STATUS status;
+
+ cfg_enter();
+
+ qdf_spin_lock_bh(&__cfg_stores_lock);
+ status = qdf_list_remove_node(&__cfg_stores_list, &store->node);
+ qdf_spin_unlock_bh(&__cfg_stores_lock);
+ if (QDF_IS_STATUS_ERROR(status)) {
+ cfg_err("Failed config store list removal; status:%d", status);
+ QDF_DEBUG_PANIC();
+ }
+
+ qdf_mem_free(store->path);
+ qdf_mem_free(store);
+}
+
+static QDF_STATUS
+cfg_store_get(const char *path, struct cfg_value_store **out_store)
+{
+ QDF_STATUS status;
+ qdf_list_node_t *node;
+
+ *out_store = NULL;
+
+ qdf_spin_lock_bh(&__cfg_stores_lock);
+ status = qdf_list_peek_front(&__cfg_stores_list, &node);
+ while (QDF_IS_STATUS_SUCCESS(status)) {
+ struct cfg_value_store *store =
+ qdf_container_of(node, struct cfg_value_store, node);
+
+ if (qdf_str_eq(path, store->path)) {
+ qdf_atomic_inc(&store->users);
+ *out_store = store;
+ break;
+ }
+
+ status = qdf_list_peek_next(&__cfg_stores_list, node, &node);
+ }
+ qdf_spin_unlock_bh(&__cfg_stores_lock);
+
+ return status;
+}
+
+static void cfg_store_put(struct cfg_value_store *store)
+{
+ if (qdf_atomic_dec_and_test(&store->users))
+ cfg_store_free(store);
+}
+
+static struct cfg_psoc_ctx *cfg_psoc_get_ctx(struct wlan_objmgr_psoc *psoc)
+{
+ struct cfg_psoc_ctx *psoc_ctx;
+
+ psoc_ctx = cfg_psoc_get_priv(psoc);
+ QDF_BUG(psoc_ctx);
+
+ return psoc_ctx;
+}
+
+struct cfg_values *cfg_psoc_get_values(struct wlan_objmgr_psoc *psoc)
+{
+ return &cfg_psoc_get_ctx(psoc)->store->values;
+}
+qdf_export_symbol(cfg_psoc_get_values);
+
+static QDF_STATUS
+cfg_ini_parse_to_store(const char *path, struct cfg_value_store *store)
+{
+ QDF_STATUS status;
+
+ status = qdf_ini_parse(path, store, cfg_ini_item_handler,
+ cfg_ini_section_handler);
+ if (QDF_IS_STATUS_ERROR(status))
+ cfg_err("Failed to parse *.ini file @ %s; status:%d",
+ path, status);
+
+ return status;
+}
+
+static void cfg_init(void)
+{
+ qdf_list_create(&__cfg_stores_list, 0);
+ qdf_spinlock_create(&__cfg_stores_lock);
+}
+
+static void cfg_deinit(void)
+{
+ qdf_spinlock_destroy(&__cfg_stores_lock);
+ qdf_list_destroy(&__cfg_stores_list);
+}
+
+static void cfg_try_deinit(void)
+{
+ bool empty;
+
+ qdf_spin_lock_bh(&__cfg_stores_lock);
+ empty = qdf_list_empty(&__cfg_stores_list);
+ qdf_spin_unlock_bh(&__cfg_stores_lock);
+
+ if (empty)
+ cfg_deinit();
+}
+
+static QDF_STATUS
+cfg_on_psoc_create(struct wlan_objmgr_psoc *psoc, void *context)
+{
+ QDF_STATUS status;
+ struct cfg_psoc_ctx *psoc_ctx;
+
+ cfg_enter();
+
+ QDF_BUG(__cfg_global_store);
+ if (!__cfg_global_store)
+ return QDF_STATUS_E_FAILURE;
+
+ psoc_ctx = qdf_mem_malloc(sizeof(*psoc_ctx));
+ if (!psoc_ctx) {
+ cfg_err("Out of memory");
+ return QDF_STATUS_E_NOMEM;
+ }
+
+ qdf_atomic_inc(&__cfg_global_store->users);
+ psoc_ctx->store = __cfg_global_store;
+
+ status = cfg_psoc_set_priv(psoc, psoc_ctx);
+ if (QDF_IS_STATUS_ERROR(status))
+ goto put_store;
+
+ return QDF_STATUS_SUCCESS;
+
+put_store:
+ cfg_store_put(__cfg_global_store);
+ qdf_mem_free(psoc_ctx);
+
+ return status;
+}
+
+static QDF_STATUS
+cfg_on_psoc_destroy(struct wlan_objmgr_psoc *psoc, void *context)
+{
+ QDF_STATUS status;
+ struct cfg_psoc_ctx *psoc_ctx;
+
+ cfg_enter();
+
+ psoc_ctx = cfg_psoc_get_ctx(psoc);
+ status = cfg_psoc_unset_priv(psoc, psoc_ctx);
+
+ cfg_store_put(psoc_ctx->store);
+ qdf_mem_free(psoc_ctx);
+
+ return status;
+}
+
+QDF_STATUS cfg_dispatcher_init(void)
+{
+ QDF_STATUS status;
+
+ cfg_enter();
+
+ QDF_BUG(!__cfg_is_init);
+ if (__cfg_is_init)
+ return QDF_STATUS_E_INVAL;
+
+ status = cfg_psoc_register_create(cfg_on_psoc_create);
+ if (QDF_IS_STATUS_ERROR(status))
+ return status;
+
+ status = cfg_psoc_register_destroy(cfg_on_psoc_destroy);
+ if (QDF_IS_STATUS_ERROR(status))
+ goto unreg_create;
+
+ __cfg_is_init = true;
+
+ return QDF_STATUS_SUCCESS;
+
+unreg_create:
+ cfg_assert_success(cfg_psoc_unregister_create(cfg_on_psoc_create));
+
+ return status;
+}
+
+QDF_STATUS cfg_dispatcher_deinit(void)
+{
+ cfg_enter();
+
+ QDF_BUG(__cfg_is_init);
+ if (!__cfg_is_init)
+ return QDF_STATUS_E_INVAL;
+
+ __cfg_is_init = false;
+
+ cfg_assert_success(cfg_psoc_unregister_create(cfg_on_psoc_create));
+ cfg_assert_success(cfg_psoc_unregister_destroy(cfg_on_psoc_destroy));
+
+ cfg_try_deinit();
+
+ return QDF_STATUS_SUCCESS;
+}
+
+QDF_STATUS cfg_parse(const char *path)
+{
+ QDF_STATUS status;
+ struct cfg_value_store *store;
+
+ cfg_enter();
+
+ QDF_BUG(!__cfg_global_store);
+ if (__cfg_global_store)
+ return QDF_STATUS_E_INVAL;
+
+ cfg_init();
+
+ status = cfg_store_alloc(path, &store);
+ if (QDF_IS_STATUS_ERROR(status))
+ goto deinit;
+
+ cfg_store_set_defaults(store);
+
+ status = cfg_ini_parse_to_store(path, store);
+ if (QDF_IS_STATUS_ERROR(status))
+ goto free_store;
+
+ __cfg_global_store = store;
+
+ return QDF_STATUS_SUCCESS;
+
+free_store:
+ cfg_store_free(store);
+
+deinit:
+ cfg_deinit();
+
+ return status;
+}
+
+void cfg_release(void)
+{
+ cfg_enter();
+
+ QDF_BUG(__cfg_global_store);
+ if (!__cfg_global_store)
+ return;
+
+ cfg_store_put(__cfg_global_store);
+ __cfg_global_store = NULL;
+
+ cfg_try_deinit();
+}
+
+QDF_STATUS cfg_psoc_parse(struct wlan_objmgr_psoc *psoc, const char *path)
+{
+ QDF_STATUS status;
+ struct cfg_value_store *store;
+ struct cfg_psoc_ctx *psoc_ctx;
+
+ cfg_enter();
+
+ QDF_BUG(__cfg_global_store);
+ if (!__cfg_global_store)
+ return QDF_STATUS_E_INVAL;
+
+ QDF_BUG(__cfg_is_init);
+ if (!__cfg_is_init)
+ return QDF_STATUS_E_INVAL;
+
+ QDF_BUG(psoc);
+ if (!psoc)
+ return QDF_STATUS_E_INVAL;
+
+ QDF_BUG(path);
+ if (!path)
+ return QDF_STATUS_E_INVAL;
+
+ psoc_ctx = cfg_psoc_get_ctx(psoc);
+
+ QDF_BUG(psoc_ctx->store == __cfg_global_store);
+ if (psoc_ctx->store != __cfg_global_store)
+ return QDF_STATUS_SUCCESS;
+
+ /* check if @path has been parsed before */
+ status = cfg_store_get(path, &store);
+ if (QDF_IS_STATUS_ERROR(status)) {
+ status = cfg_store_alloc(path, &store);
+ if (QDF_IS_STATUS_ERROR(status))
+ return status;
+
+ /* inherit global configuration */
+ qdf_mem_copy(&store->values, &__cfg_global_store->values,
+ sizeof(store->values));
+
+ status = cfg_ini_parse_to_store(path, store);
+ if (QDF_IS_STATUS_ERROR(status))
+ goto put_store;
+ }
+
+ psoc_ctx->store = store;
+ cfg_store_put(__cfg_global_store);
+
+ return QDF_STATUS_SUCCESS;
+
+put_store:
+ cfg_store_put(store);
+
+ return status;
+}
+