cfg.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781
  1. /*
  2. * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #include "cfg_all.h"
  19. #include "cfg_define.h"
  20. #include "cfg_dispatcher.h"
  21. #include "cfg_ucfg_api.h"
  22. #include "i_cfg.h"
  23. #include "i_cfg_objmgr.h"
  24. #include "qdf_atomic.h"
  25. #include "qdf_list.h"
  26. #include "qdf_mem.h"
  27. #include "qdf_module.h"
  28. #include "qdf_parse.h"
  29. #include "qdf_status.h"
  30. #include "qdf_str.h"
  31. #include "qdf_trace.h"
  32. #include "qdf_types.h"
  33. #include "wlan_objmgr_psoc_obj.h"
  34. /**
  35. * struct cfg_value_store - backing store for an ini file
  36. * @path: file path of the ini file
  37. * @node: internal list node for keeping track of all the allocated stores
  38. * @users: number of references on the store
  39. * @values: a values struct containing the parsed values from the ini file
  40. */
  41. struct cfg_value_store {
  42. char *path;
  43. qdf_list_node_t node;
  44. qdf_atomic_t users;
  45. struct cfg_values values;
  46. };
  47. /* define/populate dynamic metadata lookup table */
  48. /**
  49. * struct cfg_meta - configuration item metadata for dynamic lookup during parse
  50. * @name: name of the config item used in the ini file (i.e. "gScanDwellTime")
  51. * @item_handler: parsing callback based on the type of the config item
  52. * @min: minimum value for use in bounds checking (min_len for strings)
  53. * @max: maximum value for use in bounds checking (max_len for strings)
  54. * @fallback: the fallback behavior to use when configured values are invalid
  55. */
  56. struct cfg_meta {
  57. const char *name;
  58. const uint32_t field_offset;
  59. void (*const item_handler)(struct cfg_value_store *store,
  60. const struct cfg_meta *meta,
  61. const char *value);
  62. const int32_t min;
  63. const int32_t max;
  64. const enum cfg_fallback_behavior fallback;
  65. };
  66. /* ini item handler functions */
  67. #define cfg_value_ptr(store, meta) \
  68. ((void *)&(store)->values + (meta)->field_offset)
  69. static __attribute__((unused)) void
  70. cfg_int_item_handler(struct cfg_value_store *store,
  71. const struct cfg_meta *meta,
  72. const char *str_value)
  73. {
  74. QDF_STATUS status;
  75. int32_t *store_value = cfg_value_ptr(store, meta);
  76. int32_t value;
  77. status = qdf_int32_parse(str_value, &value);
  78. if (QDF_IS_STATUS_ERROR(status)) {
  79. cfg_err("%s=%s - Invalid format (status %d); Using default %d",
  80. meta->name, str_value, status, *store_value);
  81. return;
  82. }
  83. QDF_BUG(meta->min <= meta->max);
  84. if (meta->min > meta->max) {
  85. cfg_err("Invalid config item meta for %s", meta->name);
  86. return;
  87. }
  88. if (value >= meta->min && value <= meta->max) {
  89. *store_value = value;
  90. return;
  91. }
  92. switch (meta->fallback) {
  93. default:
  94. QDF_DEBUG_PANIC("Unknown fallback method %d for cfg item '%s'",
  95. meta->fallback, meta->name);
  96. /* fall through */
  97. case CFG_VALUE_OR_DEFAULT:
  98. /* store already contains default */
  99. break;
  100. case CFG_VALUE_OR_CLAMP:
  101. *store_value = __cfg_clamp(value, meta->min, meta->max);
  102. break;
  103. }
  104. cfg_err("%s=%d - Out of range [%d, %d]; Using %d",
  105. meta->name, value, meta->min, meta->max, *store_value);
  106. }
  107. static __attribute__((unused)) void
  108. cfg_uint_item_handler(struct cfg_value_store *store,
  109. const struct cfg_meta *meta,
  110. const char *str_value)
  111. {
  112. QDF_STATUS status;
  113. uint32_t *store_value = cfg_value_ptr(store, meta);
  114. uint32_t value;
  115. uint32_t min;
  116. uint32_t max;
  117. /**
  118. * Since meta min and max are of type int32_t
  119. * We need explicit type casting to avoid
  120. * implicit wrap around for uint32_t type cfg data.
  121. */
  122. min = (uint32_t)meta->min;
  123. max = (uint32_t)meta->max;
  124. status = qdf_uint32_parse(str_value, &value);
  125. if (QDF_IS_STATUS_ERROR(status)) {
  126. cfg_err("%s=%s - Invalid format (status %d); Using default %u",
  127. meta->name, str_value, status, *store_value);
  128. return;
  129. }
  130. QDF_BUG(min <= max);
  131. if (min > max) {
  132. cfg_err("Invalid config item meta for %s", meta->name);
  133. return;
  134. }
  135. if (value >= min && value <= max) {
  136. *store_value = value;
  137. return;
  138. }
  139. switch (meta->fallback) {
  140. default:
  141. QDF_DEBUG_PANIC("Unknown fallback method %d for cfg item '%s'",
  142. meta->fallback, meta->name);
  143. /* fall through */
  144. case CFG_VALUE_OR_DEFAULT:
  145. /* store already contains default */
  146. break;
  147. case CFG_VALUE_OR_CLAMP:
  148. *store_value = __cfg_clamp(value, min, max);
  149. break;
  150. }
  151. cfg_err("%s=%u - Out of range [%d, %d]; Using %u",
  152. meta->name, value, min, max, *store_value);
  153. }
  154. static __attribute__((unused)) void
  155. cfg_bool_item_handler(struct cfg_value_store *store,
  156. const struct cfg_meta *meta,
  157. const char *str_value)
  158. {
  159. QDF_STATUS status;
  160. bool *store_value = cfg_value_ptr(store, meta);
  161. status = qdf_bool_parse(str_value, store_value);
  162. if (QDF_IS_STATUS_SUCCESS(status))
  163. return;
  164. cfg_err("%s=%s - Invalid format (status %d); Using default '%s'",
  165. meta->name, str_value, status, *store_value ? "true" : "false");
  166. }
  167. static __attribute__((unused)) void
  168. cfg_string_item_handler(struct cfg_value_store *store,
  169. const struct cfg_meta *meta,
  170. const char *str_value)
  171. {
  172. char *store_value = cfg_value_ptr(store, meta);
  173. qdf_size_t len;
  174. QDF_BUG(meta->min >= 0);
  175. QDF_BUG(meta->min <= meta->max);
  176. if (meta->min < 0 || meta->min > meta->max) {
  177. cfg_err("Invalid config item meta for %s", meta->name);
  178. return;
  179. }
  180. /* ensure min length */
  181. len = qdf_str_nlen(str_value, meta->min);
  182. if (len < meta->min) {
  183. cfg_err("%s=%s - Too short; Using default '%s'",
  184. meta->name, str_value, store_value);
  185. return;
  186. }
  187. /* check max length */
  188. len += qdf_str_nlen(str_value + meta->min, meta->max - meta->min + 1);
  189. if (len > meta->max) {
  190. cfg_err("%s=%s - Too long; Using default '%s'",
  191. meta->name, str_value, store_value);
  192. return;
  193. }
  194. qdf_str_lcopy(store_value, str_value, meta->max + 1);
  195. }
  196. static __attribute__((unused)) void
  197. cfg_mac_item_handler(struct cfg_value_store *store,
  198. const struct cfg_meta *meta,
  199. const char *str_value)
  200. {
  201. QDF_STATUS status;
  202. struct qdf_mac_addr *store_value = cfg_value_ptr(store, meta);
  203. status = qdf_mac_parse(str_value, store_value);
  204. if (QDF_IS_STATUS_SUCCESS(status))
  205. return;
  206. cfg_err("%s=%s - Invalid format (status %d); Using default "
  207. QDF_MAC_ADDR_STR, meta->name, str_value, status,
  208. QDF_MAC_ADDR_ARRAY(store_value->bytes));
  209. }
  210. static __attribute__((unused)) void
  211. cfg_ipv4_item_handler(struct cfg_value_store *store,
  212. const struct cfg_meta *meta,
  213. const char *str_value)
  214. {
  215. QDF_STATUS status;
  216. struct qdf_ipv4_addr *store_value = cfg_value_ptr(store, meta);
  217. status = qdf_ipv4_parse(str_value, store_value);
  218. if (QDF_IS_STATUS_SUCCESS(status))
  219. return;
  220. cfg_err("%s=%s - Invalid format (status %d); Using default "
  221. QDF_IPV4_ADDR_STR, meta->name, str_value, status,
  222. QDF_IPV4_ADDR_ARRAY(store_value->bytes));
  223. }
  224. static __attribute__((unused)) void
  225. cfg_ipv6_item_handler(struct cfg_value_store *store,
  226. const struct cfg_meta *meta,
  227. const char *str_value)
  228. {
  229. QDF_STATUS status;
  230. struct qdf_ipv6_addr *store_value = cfg_value_ptr(store, meta);
  231. status = qdf_ipv6_parse(str_value, store_value);
  232. if (QDF_IS_STATUS_SUCCESS(status))
  233. return;
  234. cfg_err("%s=%s - Invalid format (status %d); Using default "
  235. QDF_IPV6_ADDR_STR, meta->name, str_value, status,
  236. QDF_IPV6_ADDR_ARRAY(store_value->bytes));
  237. }
  238. /* populate metadata lookup table */
  239. #undef __CFG_INI
  240. #define __CFG_INI(_id, _mtype, _ctype, _name, _min, _max, _fallback, ...) \
  241. { \
  242. .name = _name, \
  243. .field_offset = qdf_offsetof(struct cfg_values, _id##_internal), \
  244. .item_handler = cfg_ ## _mtype ## _item_handler, \
  245. .min = _min, \
  246. .max = _max, \
  247. .fallback = _fallback, \
  248. },
  249. #define cfg_INT_item_handler cfg_int_item_handler
  250. #define cfg_UINT_item_handler cfg_uint_item_handler
  251. #define cfg_BOOL_item_handler cfg_bool_item_handler
  252. #define cfg_STRING_item_handler cfg_string_item_handler
  253. #define cfg_MAC_item_handler cfg_mac_item_handler
  254. #define cfg_IPV4_item_handler cfg_ipv4_item_handler
  255. #define cfg_IPV6_item_handler cfg_ipv6_item_handler
  256. static const struct cfg_meta cfg_meta_lookup_table[] = {
  257. CFG_ALL
  258. };
  259. /* default store initializer */
  260. static void cfg_store_set_defaults(struct cfg_value_store *store)
  261. {
  262. #undef __CFG_INI
  263. #define __CFG_INI(id, mtype, ctype, name, min, max, fallback, desc, def...) \
  264. ctype id = def;
  265. CFG_ALL
  266. #undef __CFG_INI_STRING
  267. #define __CFG_INI_STRING(id, mtype, ctype, name, min_len, max_len, ...) \
  268. qdf_str_lcopy((char *)&store->values.id##_internal, id, (max_len) + 1);
  269. #undef __CFG_INI
  270. #define __CFG_INI(id, mtype, ctype, name, min, max, fallback, desc, def...) \
  271. *(ctype *)&store->values.id##_internal = id;
  272. CFG_ALL
  273. }
  274. static const struct cfg_meta *cfg_lookup_meta(const char *name)
  275. {
  276. int i;
  277. QDF_BUG(name);
  278. if (!name)
  279. return NULL;
  280. /* linear search for now; optimize in the future if needed */
  281. for (i = 0; i < QDF_ARRAY_SIZE(cfg_meta_lookup_table); i++) {
  282. const struct cfg_meta *meta = &cfg_meta_lookup_table[i];
  283. if (qdf_str_eq(name, meta->name))
  284. return meta;
  285. }
  286. return NULL;
  287. }
  288. static QDF_STATUS
  289. cfg_ini_item_handler(void *context, const char *key, const char *value)
  290. {
  291. struct cfg_value_store *store = context;
  292. const struct cfg_meta *meta;
  293. meta = cfg_lookup_meta(key);
  294. if (!meta) {
  295. /* TODO: promote to 'err' or 'warn' once legacy is ported */
  296. cfg_debug("Unknown config item '%s'", key);
  297. return QDF_STATUS_SUCCESS;
  298. }
  299. QDF_BUG(meta->item_handler);
  300. if (!meta->item_handler)
  301. return QDF_STATUS_SUCCESS;
  302. meta->item_handler(store, meta, value);
  303. return QDF_STATUS_SUCCESS;
  304. }
  305. static QDF_STATUS cfg_ini_section_handler(void *context, const char *name)
  306. {
  307. cfg_err("Unexpected section '%s'. Sections are not supported.", name);
  308. return QDF_STATUS_SUCCESS;
  309. }
  310. #define cfg_assert_success(expr) \
  311. do { \
  312. QDF_STATUS __assert_status = (expr); \
  313. QDF_BUG(QDF_IS_STATUS_SUCCESS(__assert_status)); \
  314. } while (0)
  315. static bool __cfg_is_init;
  316. static struct cfg_value_store *__cfg_global_store;
  317. static qdf_list_t __cfg_stores_list;
  318. static qdf_spinlock_t __cfg_stores_lock;
  319. struct cfg_psoc_ctx {
  320. struct cfg_value_store *store;
  321. };
  322. static QDF_STATUS
  323. cfg_store_alloc(const char *path, struct cfg_value_store **out_store)
  324. {
  325. QDF_STATUS status;
  326. struct cfg_value_store *store;
  327. cfg_enter();
  328. store = qdf_mem_malloc(sizeof(*store));
  329. if (!store)
  330. return QDF_STATUS_E_NOMEM;
  331. status = qdf_str_dup(&store->path, path);
  332. if (QDF_IS_STATUS_ERROR(status))
  333. goto free_store;
  334. status = qdf_atomic_init(&store->users);
  335. if (QDF_IS_STATUS_ERROR(status))
  336. goto free_path;
  337. qdf_atomic_inc(&store->users);
  338. qdf_spin_lock_bh(&__cfg_stores_lock);
  339. status = qdf_list_insert_back(&__cfg_stores_list, &store->node);
  340. qdf_spin_unlock_bh(&__cfg_stores_lock);
  341. if (QDF_IS_STATUS_ERROR(status))
  342. goto free_path;
  343. *out_store = store;
  344. return QDF_STATUS_SUCCESS;
  345. free_path:
  346. qdf_mem_free(store->path);
  347. free_store:
  348. qdf_mem_free(store);
  349. return status;
  350. }
  351. static void cfg_store_free(struct cfg_value_store *store)
  352. {
  353. QDF_STATUS status;
  354. cfg_enter();
  355. qdf_spin_lock_bh(&__cfg_stores_lock);
  356. status = qdf_list_remove_node(&__cfg_stores_list, &store->node);
  357. qdf_spin_unlock_bh(&__cfg_stores_lock);
  358. if (QDF_IS_STATUS_ERROR(status))
  359. QDF_DEBUG_PANIC("Failed config store list removal; status:%d",
  360. status);
  361. qdf_mem_free(store->path);
  362. qdf_mem_free(store);
  363. }
  364. static QDF_STATUS
  365. cfg_store_get(const char *path, struct cfg_value_store **out_store)
  366. {
  367. QDF_STATUS status;
  368. qdf_list_node_t *node;
  369. *out_store = NULL;
  370. qdf_spin_lock_bh(&__cfg_stores_lock);
  371. status = qdf_list_peek_front(&__cfg_stores_list, &node);
  372. while (QDF_IS_STATUS_SUCCESS(status)) {
  373. struct cfg_value_store *store =
  374. qdf_container_of(node, struct cfg_value_store, node);
  375. if (qdf_str_eq(path, store->path)) {
  376. qdf_atomic_inc(&store->users);
  377. *out_store = store;
  378. break;
  379. }
  380. status = qdf_list_peek_next(&__cfg_stores_list, node, &node);
  381. }
  382. qdf_spin_unlock_bh(&__cfg_stores_lock);
  383. return status;
  384. }
  385. static void cfg_store_put(struct cfg_value_store *store)
  386. {
  387. if (qdf_atomic_dec_and_test(&store->users))
  388. cfg_store_free(store);
  389. }
  390. static struct cfg_psoc_ctx *cfg_psoc_get_ctx(struct wlan_objmgr_psoc *psoc)
  391. {
  392. struct cfg_psoc_ctx *psoc_ctx;
  393. psoc_ctx = cfg_psoc_get_priv(psoc);
  394. QDF_BUG(psoc_ctx);
  395. return psoc_ctx;
  396. }
  397. struct cfg_values *cfg_psoc_get_values(struct wlan_objmgr_psoc *psoc)
  398. {
  399. return &cfg_psoc_get_ctx(psoc)->store->values;
  400. }
  401. qdf_export_symbol(cfg_psoc_get_values);
  402. static QDF_STATUS
  403. cfg_ini_parse_to_store(const char *path, struct cfg_value_store *store)
  404. {
  405. QDF_STATUS status;
  406. status = qdf_ini_parse(path, store, cfg_ini_item_handler,
  407. cfg_ini_section_handler);
  408. if (QDF_IS_STATUS_ERROR(status))
  409. cfg_err("Failed to parse *.ini file @ %s; status:%d",
  410. path, status);
  411. return status;
  412. }
  413. QDF_STATUS cfg_parse_to_psoc_store(struct wlan_objmgr_psoc *psoc,
  414. const char *path)
  415. {
  416. return cfg_ini_parse_to_store(path, cfg_psoc_get_ctx(psoc)->store);
  417. }
  418. qdf_export_symbol(cfg_parse_to_psoc_store);
  419. QDF_STATUS cfg_parse_to_global_store(const char *path)
  420. {
  421. if (!__cfg_global_store) {
  422. cfg_err("Global INI store is not valid");
  423. return QDF_STATUS_E_NOMEM;
  424. }
  425. return cfg_ini_parse_to_store(path, __cfg_global_store);
  426. }
  427. qdf_export_symbol(cfg_parse_to_global_store);
  428. static QDF_STATUS
  429. cfg_store_print(struct wlan_objmgr_psoc *psoc)
  430. {
  431. struct cfg_value_store *store;
  432. struct cfg_psoc_ctx *psoc_ctx;
  433. cfg_enter();
  434. psoc_ctx = cfg_psoc_get_ctx(psoc);
  435. if (!psoc_ctx)
  436. return QDF_STATUS_E_FAILURE;
  437. store = psoc_ctx->store;
  438. if (!store)
  439. return QDF_STATUS_E_FAILURE;
  440. #undef __CFG_INI_MAC
  441. #define __CFG_INI_MAC(id, mtype, ctype, name, desc, def...) \
  442. cfg_nofl_debug("%s %pM", name, (&store->values.id##_internal)->bytes);
  443. #undef __CFG_INI_IPV4
  444. #define __CFG_INI_IPV4(id, mtype, ctype, name, desc, def...) \
  445. cfg_nofl_debug("%s %pI4", name, (&store->values.id##_internal)->bytes);
  446. #undef __CFG_INI_IPV6
  447. #define __CFG_INI_IPV6(id, mtype, ctype, name, desc, def...) \
  448. cfg_nofl_debug("%s %pI6c", name, (&store->values.id##_internal)->bytes);
  449. #undef __CFG_INI
  450. #define __CFG_INI(id, mtype, ctype, name, min, max, fallback, desc, def...) \
  451. cfg_nofl_debug("%s %u", name, *(ctype *)&store->values.id##_internal);
  452. #undef __CFG_INI_STRING
  453. #define __CFG_INI_STRING(id, mtype, ctype, name, min_len, max_len, ...) \
  454. cfg_nofl_debug("%s %s", name, (char *)&store->values.id##_internal);
  455. CFG_ALL
  456. #undef __CFG_INI_MAC
  457. #undef __CFG_INI_IPV4
  458. #undef __CFG_INI_IPV6
  459. #undef __CFG_INI
  460. #undef __CFG_INI_STRING
  461. cfg_exit();
  462. return QDF_STATUS_SUCCESS;
  463. }
  464. QDF_STATUS ucfg_cfg_store_print(struct wlan_objmgr_psoc *psoc)
  465. {
  466. return cfg_store_print(psoc);
  467. }
  468. static QDF_STATUS
  469. cfg_on_psoc_create(struct wlan_objmgr_psoc *psoc, void *context)
  470. {
  471. QDF_STATUS status;
  472. struct cfg_psoc_ctx *psoc_ctx;
  473. cfg_enter();
  474. QDF_BUG(__cfg_global_store);
  475. if (!__cfg_global_store)
  476. return QDF_STATUS_E_FAILURE;
  477. psoc_ctx = qdf_mem_malloc(sizeof(*psoc_ctx));
  478. if (!psoc_ctx)
  479. return QDF_STATUS_E_NOMEM;
  480. qdf_atomic_inc(&__cfg_global_store->users);
  481. psoc_ctx->store = __cfg_global_store;
  482. status = cfg_psoc_set_priv(psoc, psoc_ctx);
  483. if (QDF_IS_STATUS_ERROR(status))
  484. goto put_store;
  485. return QDF_STATUS_SUCCESS;
  486. put_store:
  487. cfg_store_put(__cfg_global_store);
  488. qdf_mem_free(psoc_ctx);
  489. return status;
  490. }
  491. static QDF_STATUS
  492. cfg_on_psoc_destroy(struct wlan_objmgr_psoc *psoc, void *context)
  493. {
  494. QDF_STATUS status;
  495. struct cfg_psoc_ctx *psoc_ctx;
  496. cfg_enter();
  497. psoc_ctx = cfg_psoc_get_ctx(psoc);
  498. status = cfg_psoc_unset_priv(psoc, psoc_ctx);
  499. cfg_store_put(psoc_ctx->store);
  500. qdf_mem_free(psoc_ctx);
  501. return status;
  502. }
  503. QDF_STATUS cfg_dispatcher_init(void)
  504. {
  505. QDF_STATUS status;
  506. cfg_enter();
  507. QDF_BUG(!__cfg_is_init);
  508. if (__cfg_is_init)
  509. return QDF_STATUS_E_INVAL;
  510. qdf_list_create(&__cfg_stores_list, 0);
  511. qdf_spinlock_create(&__cfg_stores_lock);
  512. status = cfg_psoc_register_create(cfg_on_psoc_create);
  513. if (QDF_IS_STATUS_ERROR(status))
  514. return status;
  515. status = cfg_psoc_register_destroy(cfg_on_psoc_destroy);
  516. if (QDF_IS_STATUS_ERROR(status))
  517. goto unreg_create;
  518. __cfg_is_init = true;
  519. return QDF_STATUS_SUCCESS;
  520. unreg_create:
  521. cfg_assert_success(cfg_psoc_unregister_create(cfg_on_psoc_create));
  522. return status;
  523. }
  524. QDF_STATUS cfg_dispatcher_deinit(void)
  525. {
  526. cfg_enter();
  527. QDF_BUG(__cfg_is_init);
  528. if (!__cfg_is_init)
  529. return QDF_STATUS_E_INVAL;
  530. __cfg_is_init = false;
  531. cfg_assert_success(cfg_psoc_unregister_create(cfg_on_psoc_create));
  532. cfg_assert_success(cfg_psoc_unregister_destroy(cfg_on_psoc_destroy));
  533. qdf_spin_lock_bh(&__cfg_stores_lock);
  534. QDF_BUG(qdf_list_empty(&__cfg_stores_list));
  535. qdf_spin_unlock_bh(&__cfg_stores_lock);
  536. qdf_spinlock_destroy(&__cfg_stores_lock);
  537. qdf_list_destroy(&__cfg_stores_list);
  538. return QDF_STATUS_SUCCESS;
  539. }
  540. QDF_STATUS cfg_parse(const char *path)
  541. {
  542. QDF_STATUS status;
  543. struct cfg_value_store *store;
  544. cfg_enter();
  545. QDF_BUG(!__cfg_global_store);
  546. if (__cfg_global_store)
  547. return QDF_STATUS_E_INVAL;
  548. status = cfg_store_alloc(path, &store);
  549. if (QDF_IS_STATUS_ERROR(status))
  550. return status;
  551. cfg_store_set_defaults(store);
  552. status = cfg_ini_parse_to_store(path, store);
  553. if (QDF_IS_STATUS_ERROR(status))
  554. goto free_store;
  555. __cfg_global_store = store;
  556. return QDF_STATUS_SUCCESS;
  557. free_store:
  558. cfg_store_free(store);
  559. return status;
  560. }
  561. void cfg_release(void)
  562. {
  563. cfg_enter();
  564. QDF_BUG(__cfg_global_store);
  565. if (!__cfg_global_store)
  566. return;
  567. cfg_store_put(__cfg_global_store);
  568. __cfg_global_store = NULL;
  569. }
  570. QDF_STATUS cfg_psoc_parse(struct wlan_objmgr_psoc *psoc, const char *path)
  571. {
  572. QDF_STATUS status;
  573. struct cfg_value_store *store;
  574. struct cfg_psoc_ctx *psoc_ctx;
  575. cfg_enter();
  576. QDF_BUG(__cfg_global_store);
  577. if (!__cfg_global_store)
  578. return QDF_STATUS_E_INVAL;
  579. QDF_BUG(__cfg_is_init);
  580. if (!__cfg_is_init)
  581. return QDF_STATUS_E_INVAL;
  582. QDF_BUG(psoc);
  583. if (!psoc)
  584. return QDF_STATUS_E_INVAL;
  585. QDF_BUG(path);
  586. if (!path)
  587. return QDF_STATUS_E_INVAL;
  588. psoc_ctx = cfg_psoc_get_ctx(psoc);
  589. QDF_BUG(psoc_ctx->store == __cfg_global_store);
  590. if (psoc_ctx->store != __cfg_global_store)
  591. return QDF_STATUS_SUCCESS;
  592. /* check if @path has been parsed before */
  593. status = cfg_store_get(path, &store);
  594. if (QDF_IS_STATUS_ERROR(status)) {
  595. status = cfg_store_alloc(path, &store);
  596. if (QDF_IS_STATUS_ERROR(status))
  597. return status;
  598. /* inherit global configuration */
  599. qdf_mem_copy(&store->values, &__cfg_global_store->values,
  600. sizeof(store->values));
  601. status = cfg_ini_parse_to_store(path, store);
  602. if (QDF_IS_STATUS_ERROR(status))
  603. goto put_store;
  604. }
  605. psoc_ctx->store = store;
  606. cfg_store_put(__cfg_global_store);
  607. return QDF_STATUS_SUCCESS;
  608. put_store:
  609. cfg_store_put(store);
  610. return status;
  611. }
  612. qdf_export_symbol(cfg_psoc_parse);