123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781 |
- /*
- * Copyright (c) 2018-2019 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 __attribute__((unused)) 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("Unknown fallback method %d for cfg item '%s'",
- meta->fallback, meta->name);
- /* 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 __attribute__((unused)) 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;
- uint32_t min;
- uint32_t max;
- /**
- * Since meta min and max are of type int32_t
- * We need explicit type casting to avoid
- * implicit wrap around for uint32_t type cfg data.
- */
- min = (uint32_t)meta->min;
- max = (uint32_t)meta->max;
- 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(min <= max);
- if (min > max) {
- cfg_err("Invalid config item meta for %s", meta->name);
- return;
- }
- if (value >= min && value <= max) {
- *store_value = value;
- return;
- }
- switch (meta->fallback) {
- default:
- QDF_DEBUG_PANIC("Unknown fallback method %d for cfg item '%s'",
- meta->fallback, meta->name);
- /* fall through */
- case CFG_VALUE_OR_DEFAULT:
- /* store already contains default */
- break;
- case CFG_VALUE_OR_CLAMP:
- *store_value = __cfg_clamp(value, min, max);
- break;
- }
- cfg_err("%s=%u - Out of range [%d, %d]; Using %u",
- meta->name, value, min, max, *store_value);
- }
- static __attribute__((unused)) 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 __attribute__((unused)) 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 __attribute__((unused)) 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 __attribute__((unused)) 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 __attribute__((unused)) 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_INI
- #define __CFG_INI(_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_INI
- #define __CFG_INI(id, mtype, ctype, name, min, max, fallback, desc, def...) \
- ctype id = def;
- CFG_ALL
- #undef __CFG_INI_STRING
- #define __CFG_INI_STRING(id, mtype, ctype, name, min_len, max_len, ...) \
- qdf_str_lcopy((char *)&store->values.id##_internal, id, (max_len) + 1);
- #undef __CFG_INI
- #define __CFG_INI(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_debug("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)
- 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))
- QDF_DEBUG_PANIC("Failed config store list removal; status:%d",
- status);
- 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;
- }
- QDF_STATUS cfg_parse_to_psoc_store(struct wlan_objmgr_psoc *psoc,
- const char *path)
- {
- return cfg_ini_parse_to_store(path, cfg_psoc_get_ctx(psoc)->store);
- }
- qdf_export_symbol(cfg_parse_to_psoc_store);
- QDF_STATUS cfg_parse_to_global_store(const char *path)
- {
- if (!__cfg_global_store) {
- cfg_err("Global INI store is not valid");
- return QDF_STATUS_E_NOMEM;
- }
- return cfg_ini_parse_to_store(path, __cfg_global_store);
- }
- qdf_export_symbol(cfg_parse_to_global_store);
- static QDF_STATUS
- cfg_store_print(struct wlan_objmgr_psoc *psoc)
- {
- struct cfg_value_store *store;
- struct cfg_psoc_ctx *psoc_ctx;
- cfg_enter();
- psoc_ctx = cfg_psoc_get_ctx(psoc);
- if (!psoc_ctx)
- return QDF_STATUS_E_FAILURE;
- store = psoc_ctx->store;
- if (!store)
- return QDF_STATUS_E_FAILURE;
- #undef __CFG_INI_MAC
- #define __CFG_INI_MAC(id, mtype, ctype, name, desc, def...) \
- cfg_nofl_debug("%s %pM", name, (&store->values.id##_internal)->bytes);
- #undef __CFG_INI_IPV4
- #define __CFG_INI_IPV4(id, mtype, ctype, name, desc, def...) \
- cfg_nofl_debug("%s %pI4", name, (&store->values.id##_internal)->bytes);
- #undef __CFG_INI_IPV6
- #define __CFG_INI_IPV6(id, mtype, ctype, name, desc, def...) \
- cfg_nofl_debug("%s %pI6c", name, (&store->values.id##_internal)->bytes);
- #undef __CFG_INI
- #define __CFG_INI(id, mtype, ctype, name, min, max, fallback, desc, def...) \
- cfg_nofl_debug("%s %u", name, *(ctype *)&store->values.id##_internal);
- #undef __CFG_INI_STRING
- #define __CFG_INI_STRING(id, mtype, ctype, name, min_len, max_len, ...) \
- cfg_nofl_debug("%s %s", name, (char *)&store->values.id##_internal);
- CFG_ALL
- #undef __CFG_INI_MAC
- #undef __CFG_INI_IPV4
- #undef __CFG_INI_IPV6
- #undef __CFG_INI
- #undef __CFG_INI_STRING
- cfg_exit();
- return QDF_STATUS_SUCCESS;
- }
- QDF_STATUS ucfg_cfg_store_print(struct wlan_objmgr_psoc *psoc)
- {
- return cfg_store_print(psoc);
- }
- 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)
- 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;
- qdf_list_create(&__cfg_stores_list, 0);
- qdf_spinlock_create(&__cfg_stores_lock);
- 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));
- qdf_spin_lock_bh(&__cfg_stores_lock);
- QDF_BUG(qdf_list_empty(&__cfg_stores_list));
- qdf_spin_unlock_bh(&__cfg_stores_lock);
- qdf_spinlock_destroy(&__cfg_stores_lock);
- qdf_list_destroy(&__cfg_stores_list);
- 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;
- status = cfg_store_alloc(path, &store);
- if (QDF_IS_STATUS_ERROR(status))
- return status;
- 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);
- 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;
- }
- 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;
- }
- qdf_export_symbol(cfg_psoc_parse);
|