icmap.c 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239
  1. /*
  2. * Copyright (c) 2011 Red Hat, Inc.
  3. *
  4. * All rights reserved.
  5. *
  6. * Author: Jan Friesse (jfriesse@redhat.com)
  7. *
  8. * This software licensed under BSD license, the text of which follows:
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions are met:
  12. *
  13. * - Redistributions of source code must retain the above copyright notice,
  14. * this list of conditions and the following disclaimer.
  15. * - Redistributions in binary form must reproduce the above copyright notice,
  16. * this list of conditions and the following disclaimer in the documentation
  17. * and/or other materials provided with the distribution.
  18. * - Neither the name of the Red Hat, Inc. nor the names of its
  19. * contributors may be used to endorse or promote products derived from this
  20. * software without specific prior written permission.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  23. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  26. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  27. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  28. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  29. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  30. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  31. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  32. * THE POSSIBILITY OF SUCH DAMAGE.
  33. */
  34. #include <config.h>
  35. #include <string.h>
  36. #include <stdio.h>
  37. #include <corosync/corotypes.h>
  38. #include <qb/qbdefs.h>
  39. #include <corosync/list.h>
  40. #include <corosync/icmap.h>
  41. #define ICMAP_MAX_VALUE_LEN (16*1024)
  42. struct icmap_item {
  43. char *key_name;
  44. icmap_value_types_t type;
  45. size_t value_len;
  46. char value[];
  47. };
  48. struct icmap_map {
  49. qb_map_t *qb_map;
  50. };
  51. static icmap_map_t icmap_global_map;
  52. struct icmap_track {
  53. char *key_name;
  54. int32_t track_type;
  55. icmap_notify_fn_t notify_fn;
  56. void *user_data;
  57. struct list_head list;
  58. };
  59. struct icmap_ro_access_item {
  60. char *key_name;
  61. int prefix;
  62. struct list_head list;
  63. };
  64. DECLARE_LIST_INIT(icmap_ro_access_item_list_head);
  65. DECLARE_LIST_INIT(icmap_track_list_head);
  66. /*
  67. * Static functions declarations
  68. */
  69. /*
  70. * Check if key_name is valid icmap key name. Returns 0 on success, and -1 on fail
  71. */
  72. static int icmap_check_key_name(const char *key_name);
  73. /*
  74. * Check that value with given type has correct length value_len. Returns 0 on success,
  75. * and -1 on fail
  76. */
  77. static int icmap_check_value_len(const void *value, size_t value_len, icmap_value_types_t type);
  78. /*
  79. * Returns length of value of given type, or 0 for string and binary data type
  80. */
  81. static size_t icmap_get_valuetype_len(icmap_value_types_t type);
  82. /*
  83. * Converts track type of icmap to qb
  84. */
  85. static int32_t icmap_tt_to_qbtt(int32_t track_type);
  86. /*
  87. * Convert track type of qb to icmap
  88. */
  89. static int32_t icmap_qbtt_to_tt(int32_t track_type);
  90. /*
  91. * Checks if item has same value as value with value_len and given type. Returns 0 if not, otherwise !0.
  92. */
  93. static int icmap_item_eq(const struct icmap_item *item, const void *value, size_t value_len, icmap_value_types_t type);
  94. /*
  95. * Checks if given character is valid in key name. Returns 0 if not, otherwise !0.
  96. */
  97. static int icmap_is_valid_name_char(char c);
  98. /*
  99. * Helper for getting integer and float value with given type for key key_name and store it in value.
  100. */
  101. static cs_error_t icmap_get_int_r(
  102. const icmap_map_t map,
  103. const char *key_name,
  104. void *value,
  105. icmap_value_types_t type);
  106. /*
  107. * Function implementation
  108. */
  109. static int32_t icmap_tt_to_qbtt(int32_t track_type)
  110. {
  111. int32_t res = 0;
  112. if (track_type & ICMAP_TRACK_DELETE) {
  113. res |= QB_MAP_NOTIFY_DELETED;
  114. }
  115. if (track_type & ICMAP_TRACK_MODIFY) {
  116. res |= QB_MAP_NOTIFY_REPLACED;
  117. }
  118. if (track_type & ICMAP_TRACK_ADD) {
  119. res |= QB_MAP_NOTIFY_INSERTED;
  120. }
  121. if (track_type & ICMAP_TRACK_PREFIX) {
  122. res |= QB_MAP_NOTIFY_RECURSIVE;
  123. }
  124. return (res);
  125. }
  126. static int32_t icmap_qbtt_to_tt(int32_t track_type)
  127. {
  128. int32_t res = 0;
  129. if (track_type & QB_MAP_NOTIFY_DELETED) {
  130. res |= ICMAP_TRACK_DELETE;
  131. }
  132. if (track_type & QB_MAP_NOTIFY_REPLACED) {
  133. res |= ICMAP_TRACK_MODIFY;
  134. }
  135. if (track_type & QB_MAP_NOTIFY_INSERTED) {
  136. res |= ICMAP_TRACK_ADD;
  137. }
  138. if (track_type & QB_MAP_NOTIFY_RECURSIVE) {
  139. res |= ICMAP_TRACK_PREFIX;
  140. }
  141. return (res);
  142. }
  143. static void icmap_map_free_cb(uint32_t event,
  144. char* key, void* old_value,
  145. void* value, void* user_data)
  146. {
  147. struct icmap_item *item = (struct icmap_item *)old_value;
  148. /*
  149. * value == old_value -> fast_adjust_int was used, don't free data
  150. */
  151. if (item != NULL && value != old_value) {
  152. free(item->key_name);
  153. free(item);
  154. }
  155. }
  156. cs_error_t icmap_init_r(icmap_map_t *result)
  157. {
  158. int32_t err;
  159. *result = malloc(sizeof(struct icmap_map));
  160. if (*result == NULL) {
  161. return (CS_ERR_NO_MEMORY);
  162. }
  163. (*result)->qb_map = qb_trie_create();
  164. if ((*result)->qb_map == NULL)
  165. return (CS_ERR_INIT);
  166. err = qb_map_notify_add((*result)->qb_map, NULL, icmap_map_free_cb, QB_MAP_NOTIFY_FREE, NULL);
  167. return (qb_to_cs_error(err));
  168. }
  169. cs_error_t icmap_init(void)
  170. {
  171. return (icmap_init_r(&icmap_global_map));
  172. }
  173. static void icmap_set_ro_access_free(void)
  174. {
  175. struct list_head *iter = icmap_ro_access_item_list_head.next;
  176. struct icmap_ro_access_item *icmap_ro_ai;
  177. while (iter != &icmap_ro_access_item_list_head) {
  178. icmap_ro_ai = list_entry(iter, struct icmap_ro_access_item, list);
  179. list_del(&icmap_ro_ai->list);
  180. free(icmap_ro_ai->key_name);
  181. free(icmap_ro_ai);
  182. iter = icmap_ro_access_item_list_head.next;
  183. }
  184. }
  185. static void icmap_del_all_track(void)
  186. {
  187. struct list_head *iter = icmap_track_list_head.next;
  188. struct icmap_track *icmap_track;
  189. while (iter != &icmap_track_list_head) {
  190. icmap_track = list_entry(iter, struct icmap_track, list);
  191. icmap_track_delete(icmap_track);
  192. iter = icmap_track_list_head.next;
  193. }
  194. }
  195. void icmap_fini_r(const icmap_map_t map)
  196. {
  197. qb_map_destroy(map->qb_map);
  198. free(map);
  199. return;
  200. }
  201. void icmap_fini(void)
  202. {
  203. icmap_del_all_track();
  204. /*
  205. * catch 22 warning:
  206. * We need to drop this notify but we can't because it calls icmap_map_free_cb
  207. * while destroying the tree to free icmap_item(s).
  208. * -> qb_map_notify_del_2(icmap_map, NULL, icmap_map_free_cb, QB_MAP_NOTIFY_FREE, NULL);
  209. * and we cannot call it after map_destroy. joy! :)
  210. */
  211. icmap_fini_r(icmap_global_map);
  212. icmap_set_ro_access_free();
  213. return ;
  214. }
  215. icmap_map_t icmap_get_global_map(void)
  216. {
  217. return (icmap_global_map);
  218. }
  219. static int icmap_is_valid_name_char(char c)
  220. {
  221. return ((c >= 'a' && c <= 'z') ||
  222. (c >= 'A' && c <= 'Z') ||
  223. (c >= '0' && c <= '9') ||
  224. c == '.' || c == '_' || c == '-' || c == '/' || c == ':');
  225. }
  226. void icmap_convert_name_to_valid_name(char *key_name)
  227. {
  228. int i;
  229. for (i = 0; i < strlen(key_name); i++) {
  230. if (!icmap_is_valid_name_char(key_name[i])) {
  231. key_name[i] = '_';
  232. }
  233. }
  234. }
  235. static int icmap_check_key_name(const char *key_name)
  236. {
  237. int i;
  238. if ((strlen(key_name) < ICMAP_KEYNAME_MINLEN) || strlen(key_name) > ICMAP_KEYNAME_MAXLEN) {
  239. return (-1);
  240. }
  241. for (i = 0; i < strlen(key_name); i++) {
  242. if (!icmap_is_valid_name_char(key_name[i])) {
  243. return (-1);
  244. }
  245. }
  246. return (0);
  247. }
  248. static size_t icmap_get_valuetype_len(icmap_value_types_t type)
  249. {
  250. size_t res = 0;
  251. switch (type) {
  252. case ICMAP_VALUETYPE_INT8: res = sizeof(int8_t); break;
  253. case ICMAP_VALUETYPE_UINT8: res = sizeof(uint8_t); break;
  254. case ICMAP_VALUETYPE_INT16: res = sizeof(int16_t); break;
  255. case ICMAP_VALUETYPE_UINT16: res = sizeof(uint16_t); break;
  256. case ICMAP_VALUETYPE_INT32: res = sizeof(int32_t); break;
  257. case ICMAP_VALUETYPE_UINT32: res = sizeof(uint32_t); break;
  258. case ICMAP_VALUETYPE_INT64: res = sizeof(int64_t); break;
  259. case ICMAP_VALUETYPE_UINT64: res = sizeof(uint64_t); break;
  260. case ICMAP_VALUETYPE_FLOAT: res = sizeof(float); break;
  261. case ICMAP_VALUETYPE_DOUBLE: res = sizeof(double); break;
  262. case ICMAP_VALUETYPE_STRING:
  263. case ICMAP_VALUETYPE_BINARY:
  264. res = 0;
  265. break;
  266. }
  267. return (res);
  268. }
  269. static int icmap_check_value_len(const void *value, size_t value_len, icmap_value_types_t type)
  270. {
  271. if (value_len > ICMAP_MAX_VALUE_LEN) {
  272. return (-1);
  273. }
  274. if (type != ICMAP_VALUETYPE_STRING && type != ICMAP_VALUETYPE_BINARY) {
  275. if (icmap_get_valuetype_len(type) == value_len) {
  276. return (0);
  277. } else {
  278. return (-1);
  279. }
  280. }
  281. if (type == ICMAP_VALUETYPE_STRING) {
  282. if (value_len > strlen((const char *)value)) {
  283. return (-1);
  284. } else {
  285. return (0);
  286. }
  287. }
  288. return (0);
  289. }
  290. static int icmap_item_eq(const struct icmap_item *item, const void *value, size_t value_len, icmap_value_types_t type)
  291. {
  292. size_t ptr_len;
  293. if (item->type != type) {
  294. return (0);
  295. }
  296. if (item->type == ICMAP_VALUETYPE_STRING) {
  297. ptr_len = strlen((const char *)value);
  298. if (ptr_len > value_len) {
  299. ptr_len = value_len;
  300. }
  301. ptr_len++;
  302. } else {
  303. ptr_len = value_len;
  304. }
  305. if (item->value_len == ptr_len) {
  306. return (memcmp(item->value, value, value_len) == 0);
  307. };
  308. return (0);
  309. }
  310. cs_error_t icmap_set_r(
  311. const icmap_map_t map,
  312. const char *key_name,
  313. const void *value,
  314. size_t value_len,
  315. icmap_value_types_t type)
  316. {
  317. struct icmap_item *item;
  318. struct icmap_item *new_item;
  319. size_t new_value_len;
  320. size_t new_item_size;
  321. if (value == NULL || key_name == NULL) {
  322. return (CS_ERR_INVALID_PARAM);
  323. }
  324. if (icmap_check_value_len(value, value_len, type) != 0) {
  325. return (CS_ERR_INVALID_PARAM);
  326. }
  327. item = qb_map_get(map->qb_map, key_name);
  328. if (item != NULL) {
  329. /*
  330. * Check that key is really changed
  331. */
  332. if (icmap_item_eq(item, value, value_len, type)) {
  333. return (CS_OK);
  334. }
  335. } else {
  336. if (icmap_check_key_name(key_name) != 0) {
  337. return (CS_ERR_NAME_TOO_LONG);
  338. }
  339. }
  340. if (type == ICMAP_VALUETYPE_BINARY || type == ICMAP_VALUETYPE_STRING) {
  341. if (type == ICMAP_VALUETYPE_STRING) {
  342. new_value_len = strlen((const char *)value);
  343. if (new_value_len > value_len) {
  344. new_value_len = value_len;
  345. }
  346. new_value_len++;
  347. } else {
  348. new_value_len = value_len;
  349. }
  350. } else {
  351. new_value_len = icmap_get_valuetype_len(type);
  352. }
  353. new_item_size = sizeof(struct icmap_item) + new_value_len;
  354. new_item = malloc(new_item_size);
  355. if (new_item == NULL) {
  356. return (CS_ERR_NO_MEMORY);
  357. }
  358. memset(new_item, 0, new_item_size);
  359. if (item == NULL) {
  360. new_item->key_name = strdup(key_name);
  361. if (new_item->key_name == NULL) {
  362. free(new_item);
  363. return (CS_ERR_NO_MEMORY);
  364. }
  365. } else {
  366. new_item->key_name = item->key_name;
  367. item->key_name = NULL;
  368. }
  369. new_item->type = type;
  370. new_item->value_len = new_value_len;
  371. memcpy(new_item->value, value, new_value_len);
  372. if (new_item->type == ICMAP_VALUETYPE_STRING) {
  373. ((char *)new_item->value)[new_value_len - 1] = 0;
  374. }
  375. qb_map_put(map->qb_map, new_item->key_name, new_item);
  376. return (CS_OK);
  377. }
  378. cs_error_t icmap_set(
  379. const char *key_name,
  380. const void *value,
  381. size_t value_len,
  382. icmap_value_types_t type)
  383. {
  384. return (icmap_set_r(icmap_global_map, key_name, value, value_len, type));
  385. }
  386. cs_error_t icmap_set_int8_r(const icmap_map_t map, const char *key_name, int8_t value)
  387. {
  388. return (icmap_set_r(map, key_name, &value, sizeof(value), ICMAP_VALUETYPE_INT8));
  389. }
  390. cs_error_t icmap_set_uint8_r(const icmap_map_t map, const char *key_name, uint8_t value)
  391. {
  392. return (icmap_set_r(map, key_name, &value, sizeof(value), ICMAP_VALUETYPE_UINT8));
  393. }
  394. cs_error_t icmap_set_int16_r(const icmap_map_t map, const char *key_name, int16_t value)
  395. {
  396. return (icmap_set_r(map,key_name, &value, sizeof(value), ICMAP_VALUETYPE_INT16));
  397. }
  398. cs_error_t icmap_set_uint16_r(const icmap_map_t map, const char *key_name, uint16_t value)
  399. {
  400. return (icmap_set_r(map, key_name, &value, sizeof(value), ICMAP_VALUETYPE_UINT16));
  401. }
  402. cs_error_t icmap_set_int32_r(const icmap_map_t map, const char *key_name, int32_t value)
  403. {
  404. return (icmap_set_r(map, key_name, &value, sizeof(value), ICMAP_VALUETYPE_INT32));
  405. }
  406. cs_error_t icmap_set_uint32_r(const icmap_map_t map, const char *key_name, uint32_t value)
  407. {
  408. return (icmap_set_r(map, key_name, &value, sizeof(value), ICMAP_VALUETYPE_UINT32));
  409. }
  410. cs_error_t icmap_set_int64_r(const icmap_map_t map, const char *key_name, int64_t value)
  411. {
  412. return (icmap_set_r(map, key_name, &value, sizeof(value), ICMAP_VALUETYPE_INT64));
  413. }
  414. cs_error_t icmap_set_uint64_r(const icmap_map_t map, const char *key_name, uint64_t value)
  415. {
  416. return (icmap_set_r(map, key_name, &value, sizeof(value), ICMAP_VALUETYPE_UINT64));
  417. }
  418. cs_error_t icmap_set_float_r(const icmap_map_t map, const char *key_name, float value)
  419. {
  420. return (icmap_set_r(map, key_name, &value, sizeof(value), ICMAP_VALUETYPE_FLOAT));
  421. }
  422. cs_error_t icmap_set_double_r(const icmap_map_t map, const char *key_name, double value)
  423. {
  424. return (icmap_set_r(map, key_name, &value, sizeof(value), ICMAP_VALUETYPE_DOUBLE));
  425. }
  426. cs_error_t icmap_set_string_r(const icmap_map_t map, const char *key_name, const char *value)
  427. {
  428. if (value == NULL) {
  429. return (CS_ERR_INVALID_PARAM);
  430. }
  431. return (icmap_set_r(map, key_name, value, strlen(value), ICMAP_VALUETYPE_STRING));
  432. }
  433. cs_error_t icmap_set_int8(const char *key_name, int8_t value)
  434. {
  435. return (icmap_set_int8_r(icmap_global_map, key_name, value));
  436. }
  437. cs_error_t icmap_set_uint8(const char *key_name, uint8_t value)
  438. {
  439. return (icmap_set_uint8_r(icmap_global_map, key_name, value));
  440. }
  441. cs_error_t icmap_set_int16(const char *key_name, int16_t value)
  442. {
  443. return (icmap_set_int16_r(icmap_global_map, key_name, value));
  444. }
  445. cs_error_t icmap_set_uint16(const char *key_name, uint16_t value)
  446. {
  447. return (icmap_set_uint16_r(icmap_global_map, key_name, value));
  448. }
  449. cs_error_t icmap_set_int32(const char *key_name, int32_t value)
  450. {
  451. return (icmap_set_int32_r(icmap_global_map, key_name, value));
  452. }
  453. cs_error_t icmap_set_uint32(const char *key_name, uint32_t value)
  454. {
  455. return (icmap_set_uint32_r(icmap_global_map, key_name, value));
  456. }
  457. cs_error_t icmap_set_int64(const char *key_name, int64_t value)
  458. {
  459. return (icmap_set_int64_r(icmap_global_map, key_name, value));
  460. }
  461. cs_error_t icmap_set_uint64(const char *key_name, uint64_t value)
  462. {
  463. return (icmap_set_uint64_r(icmap_global_map, key_name, value));
  464. }
  465. cs_error_t icmap_set_float(const char *key_name, float value)
  466. {
  467. return (icmap_set_float_r(icmap_global_map, key_name, value));
  468. }
  469. cs_error_t icmap_set_double(const char *key_name, double value)
  470. {
  471. return (icmap_set_double_r(icmap_global_map, key_name, value));
  472. }
  473. cs_error_t icmap_set_string(const char *key_name, const char *value)
  474. {
  475. return (icmap_set_string_r(icmap_global_map, key_name, value));
  476. }
  477. cs_error_t icmap_delete_r(const icmap_map_t map, const char *key_name)
  478. {
  479. struct icmap_item *item;
  480. if (key_name == NULL) {
  481. return (CS_ERR_INVALID_PARAM);
  482. }
  483. item = qb_map_get(map->qb_map, key_name);
  484. if (item == NULL) {
  485. return (CS_ERR_NOT_EXIST);
  486. }
  487. if (qb_map_rm(map->qb_map, item->key_name) != QB_TRUE) {
  488. return (CS_ERR_NOT_EXIST);
  489. }
  490. return (CS_OK);
  491. }
  492. cs_error_t icmap_delete(const char *key_name)
  493. {
  494. return (icmap_delete_r(icmap_global_map, key_name));
  495. }
  496. cs_error_t icmap_get_r(
  497. const icmap_map_t map,
  498. const char *key_name,
  499. void *value,
  500. size_t *value_len,
  501. icmap_value_types_t *type)
  502. {
  503. struct icmap_item *item;
  504. if (key_name == NULL) {
  505. return (CS_ERR_INVALID_PARAM);
  506. }
  507. item = qb_map_get(map->qb_map, key_name);
  508. if (item == NULL) {
  509. return (CS_ERR_NOT_EXIST);
  510. }
  511. if (type != NULL) {
  512. *type = item->type;
  513. }
  514. if (value == NULL) {
  515. if (value_len != NULL) {
  516. *value_len = item->value_len;
  517. }
  518. } else {
  519. if (value_len == NULL || *value_len < item->value_len) {
  520. return (CS_ERR_INVALID_PARAM);
  521. }
  522. *value_len = item->value_len;
  523. memcpy(value, item->value, item->value_len);
  524. }
  525. return (CS_OK);
  526. }
  527. cs_error_t icmap_get(
  528. const char *key_name,
  529. void *value,
  530. size_t *value_len,
  531. icmap_value_types_t *type)
  532. {
  533. return (icmap_get_r(icmap_global_map, key_name, value, value_len, type));
  534. }
  535. static cs_error_t icmap_get_int_r(
  536. const icmap_map_t map,
  537. const char *key_name,
  538. void *value,
  539. icmap_value_types_t type)
  540. {
  541. char key_value[16];
  542. size_t key_size;
  543. cs_error_t err;
  544. icmap_value_types_t key_type;
  545. key_size = sizeof(key_value);
  546. memset(key_value, 0, key_size);
  547. err = icmap_get(key_name, key_value, &key_size, &key_type);
  548. if (err != CS_OK)
  549. return (err);
  550. if (key_type != type) {
  551. return (CS_ERR_INVALID_PARAM);
  552. }
  553. memcpy(value, key_value, icmap_get_valuetype_len(key_type));
  554. return (CS_OK);
  555. }
  556. cs_error_t icmap_get_int8_r(const icmap_map_t map, const char *key_name, int8_t *i8)
  557. {
  558. return (icmap_get_int_r(map, key_name, i8, ICMAP_VALUETYPE_INT8));
  559. }
  560. cs_error_t icmap_get_uint8_r(const icmap_map_t map, const char *key_name, uint8_t *u8)
  561. {
  562. return (icmap_get_int_r(map, key_name, u8, ICMAP_VALUETYPE_UINT8));
  563. }
  564. cs_error_t icmap_get_int16_r(const icmap_map_t map, const char *key_name, int16_t *i16)
  565. {
  566. return (icmap_get_int_r(map, key_name, i16, ICMAP_VALUETYPE_INT16));
  567. }
  568. cs_error_t icmap_get_uint16_r(const icmap_map_t map, const char *key_name, uint16_t *u16)
  569. {
  570. return (icmap_get_int_r(map, key_name, u16, ICMAP_VALUETYPE_UINT16));
  571. }
  572. cs_error_t icmap_get_int32_r(const icmap_map_t map, const char *key_name, int32_t *i32)
  573. {
  574. return (icmap_get_int_r(map, key_name, i32, ICMAP_VALUETYPE_INT32));
  575. }
  576. cs_error_t icmap_get_uint32_r(const icmap_map_t map, const char *key_name, uint32_t *u32)
  577. {
  578. return (icmap_get_int_r(map, key_name, u32, ICMAP_VALUETYPE_UINT32));
  579. }
  580. cs_error_t icmap_get_int64_r(const icmap_map_t map, const char *key_name, int64_t *i64)
  581. {
  582. return(icmap_get_int_r(map, key_name, i64, ICMAP_VALUETYPE_INT64));
  583. }
  584. cs_error_t icmap_get_uint64_r(const icmap_map_t map, const char *key_name, uint64_t *u64)
  585. {
  586. return (icmap_get_int_r(map, key_name, u64, ICMAP_VALUETYPE_UINT64));
  587. }
  588. cs_error_t icmap_get_float_r(const icmap_map_t map, const char *key_name, float *flt)
  589. {
  590. return (icmap_get_int_r(map, key_name, flt, ICMAP_VALUETYPE_FLOAT));
  591. }
  592. cs_error_t icmap_get_double_r(const icmap_map_t map, const char *key_name, double *dbl)
  593. {
  594. return (icmap_get_int_r(map, key_name, dbl, ICMAP_VALUETYPE_DOUBLE));
  595. }
  596. cs_error_t icmap_get_int8(const char *key_name, int8_t *i8)
  597. {
  598. return (icmap_get_int8_r(icmap_global_map, key_name, i8));
  599. }
  600. cs_error_t icmap_get_uint8(const char *key_name, uint8_t *u8)
  601. {
  602. return (icmap_get_uint8_r(icmap_global_map, key_name, u8));
  603. }
  604. cs_error_t icmap_get_int16(const char *key_name, int16_t *i16)
  605. {
  606. return (icmap_get_int16_r(icmap_global_map, key_name, i16));
  607. }
  608. cs_error_t icmap_get_uint16(const char *key_name, uint16_t *u16)
  609. {
  610. return (icmap_get_uint16_r(icmap_global_map, key_name, u16));
  611. }
  612. cs_error_t icmap_get_int32(const char *key_name, int32_t *i32)
  613. {
  614. return (icmap_get_int32_r(icmap_global_map, key_name, i32));
  615. }
  616. cs_error_t icmap_get_uint32(const char *key_name, uint32_t *u32)
  617. {
  618. return (icmap_get_uint32_r(icmap_global_map, key_name, u32));
  619. }
  620. cs_error_t icmap_get_int64(const char *key_name, int64_t *i64)
  621. {
  622. return(icmap_get_int64_r(icmap_global_map, key_name, i64));
  623. }
  624. cs_error_t icmap_get_uint64(const char *key_name, uint64_t *u64)
  625. {
  626. return (icmap_get_uint64_r(icmap_global_map, key_name, u64));
  627. }
  628. cs_error_t icmap_get_float(const char *key_name, float *flt)
  629. {
  630. return (icmap_get_float_r(icmap_global_map, key_name, flt));
  631. }
  632. cs_error_t icmap_get_double(const char *key_name, double *dbl)
  633. {
  634. return (icmap_get_double_r(icmap_global_map, key_name, dbl));
  635. }
  636. cs_error_t icmap_get_string(const char *key_name, char **str)
  637. {
  638. cs_error_t res;
  639. size_t str_len;
  640. icmap_value_types_t type;
  641. res = icmap_get(key_name, NULL, &str_len, &type);
  642. if (res != CS_OK || type != ICMAP_VALUETYPE_STRING) {
  643. if (res == CS_OK) {
  644. res = CS_ERR_INVALID_PARAM;
  645. }
  646. goto return_error;
  647. }
  648. *str = malloc(str_len);
  649. if (*str == NULL) {
  650. res = CS_ERR_NO_MEMORY;
  651. goto return_error;
  652. }
  653. res = icmap_get(key_name, *str, &str_len, &type);
  654. if (res != CS_OK) {
  655. free(*str);
  656. goto return_error;
  657. }
  658. return (CS_OK);
  659. return_error:
  660. return (res);
  661. }
  662. cs_error_t icmap_adjust_int_r(
  663. const icmap_map_t map,
  664. const char *key_name,
  665. int32_t step)
  666. {
  667. struct icmap_item *item;
  668. uint8_t u8;
  669. uint16_t u16;
  670. uint32_t u32;
  671. uint64_t u64;
  672. cs_error_t err = CS_OK;
  673. if (key_name == NULL) {
  674. return (CS_ERR_INVALID_PARAM);
  675. }
  676. item = qb_map_get(map->qb_map, key_name);
  677. if (item == NULL) {
  678. return (CS_ERR_NOT_EXIST);
  679. }
  680. switch (item->type) {
  681. case ICMAP_VALUETYPE_INT8:
  682. case ICMAP_VALUETYPE_UINT8:
  683. memcpy(&u8, item->value, sizeof(u8));
  684. u8 += step;
  685. err = icmap_set(key_name, &u8, sizeof(u8), item->type);
  686. break;
  687. case ICMAP_VALUETYPE_INT16:
  688. case ICMAP_VALUETYPE_UINT16:
  689. memcpy(&u16, item->value, sizeof(u16));
  690. u16 += step;
  691. err = icmap_set(key_name, &u16, sizeof(u16), item->type);
  692. break;
  693. case ICMAP_VALUETYPE_INT32:
  694. case ICMAP_VALUETYPE_UINT32:
  695. memcpy(&u32, item->value, sizeof(u32));
  696. u32 += step;
  697. err = icmap_set(key_name, &u32, sizeof(u32), item->type);
  698. break;
  699. case ICMAP_VALUETYPE_INT64:
  700. case ICMAP_VALUETYPE_UINT64:
  701. memcpy(&u64, item->value, sizeof(u64));
  702. u64 += step;
  703. err = icmap_set(key_name, &u64, sizeof(u64), item->type);
  704. break;
  705. case ICMAP_VALUETYPE_FLOAT:
  706. case ICMAP_VALUETYPE_DOUBLE:
  707. case ICMAP_VALUETYPE_STRING:
  708. case ICMAP_VALUETYPE_BINARY:
  709. err = CS_ERR_INVALID_PARAM;
  710. break;
  711. }
  712. return (err);
  713. }
  714. cs_error_t icmap_adjust_int(
  715. const char *key_name,
  716. int32_t step)
  717. {
  718. return (icmap_adjust_int_r(icmap_global_map, key_name, step));
  719. }
  720. cs_error_t icmap_fast_adjust_int_r(
  721. const icmap_map_t map,
  722. const char *key_name,
  723. int32_t step)
  724. {
  725. struct icmap_item *item;
  726. cs_error_t err = CS_OK;
  727. if (key_name == NULL) {
  728. return (CS_ERR_INVALID_PARAM);
  729. }
  730. item = qb_map_get(map->qb_map, key_name);
  731. if (item == NULL) {
  732. return (CS_ERR_NOT_EXIST);
  733. }
  734. switch (item->type) {
  735. case ICMAP_VALUETYPE_INT8:
  736. case ICMAP_VALUETYPE_UINT8:
  737. *(uint8_t *)item->value += step;
  738. break;
  739. case ICMAP_VALUETYPE_INT16:
  740. case ICMAP_VALUETYPE_UINT16:
  741. *(uint16_t *)item->value += step;
  742. break;
  743. case ICMAP_VALUETYPE_INT32:
  744. case ICMAP_VALUETYPE_UINT32:
  745. *(uint32_t *)item->value += step;
  746. break;
  747. case ICMAP_VALUETYPE_INT64:
  748. case ICMAP_VALUETYPE_UINT64:
  749. *(uint64_t *)item->value += step;
  750. break;
  751. case ICMAP_VALUETYPE_FLOAT:
  752. case ICMAP_VALUETYPE_DOUBLE:
  753. case ICMAP_VALUETYPE_STRING:
  754. case ICMAP_VALUETYPE_BINARY:
  755. err = CS_ERR_INVALID_PARAM;
  756. break;
  757. }
  758. if (err == CS_OK) {
  759. qb_map_put(map->qb_map, item->key_name, item);
  760. }
  761. return (err);
  762. }
  763. cs_error_t icmap_fast_adjust_int(
  764. const char *key_name,
  765. int32_t step)
  766. {
  767. return (icmap_fast_adjust_int_r(icmap_global_map, key_name, step));
  768. }
  769. cs_error_t icmap_inc_r(const icmap_map_t map, const char *key_name)
  770. {
  771. return (icmap_adjust_int_r(map, key_name, 1));
  772. }
  773. cs_error_t icmap_inc(const char *key_name)
  774. {
  775. return (icmap_inc_r(icmap_global_map, key_name));
  776. }
  777. cs_error_t icmap_dec_r(const icmap_map_t map, const char *key_name)
  778. {
  779. return (icmap_adjust_int_r(map, key_name, -1));
  780. }
  781. cs_error_t icmap_dec(const char *key_name)
  782. {
  783. return (icmap_dec_r(icmap_global_map, key_name));
  784. }
  785. cs_error_t icmap_fast_inc_r(const icmap_map_t map, const char *key_name)
  786. {
  787. return (icmap_fast_adjust_int_r(map, key_name, 1));
  788. }
  789. cs_error_t icmap_fast_inc(const char *key_name)
  790. {
  791. return (icmap_fast_inc_r(icmap_global_map, key_name));
  792. }
  793. cs_error_t icmap_fast_dec_r(const icmap_map_t map, const char *key_name)
  794. {
  795. return (icmap_fast_adjust_int_r(map, key_name, -1));
  796. }
  797. cs_error_t icmap_fast_dec(const char *key_name)
  798. {
  799. return (icmap_fast_dec_r(icmap_global_map, key_name));
  800. }
  801. icmap_iter_t icmap_iter_init_r(const icmap_map_t map, const char *prefix)
  802. {
  803. return (qb_map_pref_iter_create(map->qb_map, prefix));
  804. }
  805. icmap_iter_t icmap_iter_init(const char *prefix)
  806. {
  807. return (icmap_iter_init_r(icmap_global_map, prefix));
  808. }
  809. const char *icmap_iter_next(icmap_iter_t iter, size_t *value_len, icmap_value_types_t *type)
  810. {
  811. struct icmap_item *item;
  812. const char *res;
  813. res = qb_map_iter_next(iter, (void **)&item);
  814. if (res == NULL) {
  815. return (res);
  816. }
  817. if (value_len != NULL) {
  818. *value_len = item->value_len;
  819. }
  820. if (type != NULL) {
  821. *type = item->type;
  822. }
  823. return (res);
  824. }
  825. void icmap_iter_finalize(icmap_iter_t iter)
  826. {
  827. qb_map_iter_free(iter);
  828. }
  829. static void icmap_notify_fn(uint32_t event, char *key, void *old_value, void *value, void *user_data)
  830. {
  831. icmap_track_t icmap_track = (icmap_track_t)user_data;
  832. struct icmap_item *new_item = (struct icmap_item *)value;
  833. struct icmap_item *old_item = (struct icmap_item *)old_value;
  834. struct icmap_notify_value new_val;
  835. struct icmap_notify_value old_val;
  836. if (value == NULL && old_value == NULL) {
  837. return ;
  838. }
  839. if (new_item != NULL) {
  840. new_val.type = new_item->type;
  841. new_val.len = new_item->value_len;
  842. new_val.data = new_item->value;
  843. } else {
  844. memset(&new_val, 0, sizeof(new_val));
  845. }
  846. /*
  847. * old_item == new_item if fast functions are used -> don't fill old value
  848. */
  849. if (old_item != NULL && old_item != new_item) {
  850. old_val.type = old_item->type;
  851. old_val.len = old_item->value_len;
  852. old_val.data = old_item->value;
  853. } else {
  854. memset(&old_val, 0, sizeof(old_val));
  855. }
  856. icmap_track->notify_fn(icmap_qbtt_to_tt(event),
  857. key,
  858. new_val,
  859. old_val,
  860. icmap_track->user_data);
  861. }
  862. cs_error_t icmap_track_add(
  863. const char *key_name,
  864. int32_t track_type,
  865. icmap_notify_fn_t notify_fn,
  866. void *user_data,
  867. icmap_track_t *icmap_track)
  868. {
  869. int32_t err;
  870. if (notify_fn == NULL || icmap_track == NULL) {
  871. return (CS_ERR_INVALID_PARAM);
  872. }
  873. if ((track_type & ~(ICMAP_TRACK_ADD | ICMAP_TRACK_DELETE | ICMAP_TRACK_MODIFY | ICMAP_TRACK_PREFIX)) != 0) {
  874. return (CS_ERR_INVALID_PARAM);
  875. }
  876. *icmap_track = malloc(sizeof(**icmap_track));
  877. if (*icmap_track == NULL) {
  878. return (CS_ERR_NO_MEMORY);
  879. }
  880. memset(*icmap_track, 0, sizeof(**icmap_track));
  881. if (key_name != NULL) {
  882. (*icmap_track)->key_name = strdup(key_name);
  883. };
  884. (*icmap_track)->track_type = track_type;
  885. (*icmap_track)->notify_fn = notify_fn;
  886. (*icmap_track)->user_data = user_data;
  887. if ((err = qb_map_notify_add(icmap_global_map->qb_map, (*icmap_track)->key_name, icmap_notify_fn,
  888. icmap_tt_to_qbtt(track_type), *icmap_track)) != 0) {
  889. free((*icmap_track)->key_name);
  890. free(*icmap_track);
  891. return (qb_to_cs_error(err));
  892. }
  893. list_init(&(*icmap_track)->list);
  894. list_add (&(*icmap_track)->list, &icmap_track_list_head);
  895. return (CS_OK);
  896. }
  897. cs_error_t icmap_track_delete(icmap_track_t icmap_track)
  898. {
  899. int32_t err;
  900. if ((err = qb_map_notify_del_2(icmap_global_map->qb_map, icmap_track->key_name,
  901. icmap_notify_fn, icmap_tt_to_qbtt(icmap_track->track_type), icmap_track)) != 0) {
  902. return (qb_to_cs_error(err));
  903. }
  904. list_del(&icmap_track->list);
  905. free(icmap_track->key_name);
  906. free(icmap_track);
  907. return (CS_OK);
  908. }
  909. void *icmap_track_get_user_data(icmap_track_t icmap_track)
  910. {
  911. return (icmap_track->user_data);
  912. }
  913. cs_error_t icmap_set_ro_access(const char *key_name, int prefix, int ro_access)
  914. {
  915. struct list_head *iter;
  916. struct icmap_ro_access_item *icmap_ro_ai;
  917. for (iter = icmap_ro_access_item_list_head.next; iter != &icmap_ro_access_item_list_head; iter = iter->next) {
  918. icmap_ro_ai = list_entry(iter, struct icmap_ro_access_item, list);
  919. if (icmap_ro_ai->prefix == prefix && strcmp(key_name, icmap_ro_ai->key_name) == 0) {
  920. /*
  921. * We found item
  922. */
  923. if (ro_access) {
  924. return (CS_ERR_EXIST);
  925. } else {
  926. list_del(&icmap_ro_ai->list);
  927. free(icmap_ro_ai->key_name);
  928. free(icmap_ro_ai);
  929. return (CS_OK);
  930. }
  931. }
  932. }
  933. if (!ro_access) {
  934. return (CS_ERR_NOT_EXIST);
  935. }
  936. icmap_ro_ai = malloc(sizeof(*icmap_ro_ai));
  937. if (icmap_ro_ai == NULL) {
  938. return (CS_ERR_NO_MEMORY);
  939. }
  940. memset(icmap_ro_ai, 0, sizeof(*icmap_ro_ai));
  941. icmap_ro_ai->key_name = strdup(key_name);
  942. if (icmap_ro_ai->key_name == NULL) {
  943. free(icmap_ro_ai);
  944. return (CS_ERR_NO_MEMORY);
  945. }
  946. icmap_ro_ai->prefix = prefix;
  947. list_init(&icmap_ro_ai->list);
  948. list_add (&icmap_ro_ai->list, &icmap_ro_access_item_list_head);
  949. return (CS_OK);
  950. }
  951. int icmap_is_key_ro(const char *key_name)
  952. {
  953. struct list_head *iter;
  954. struct icmap_ro_access_item *icmap_ro_ai;
  955. for (iter = icmap_ro_access_item_list_head.next; iter != &icmap_ro_access_item_list_head; iter = iter->next) {
  956. icmap_ro_ai = list_entry(iter, struct icmap_ro_access_item, list);
  957. if (icmap_ro_ai->prefix) {
  958. if (strlen(icmap_ro_ai->key_name) > strlen(key_name))
  959. continue;
  960. if (strncmp(icmap_ro_ai->key_name, key_name, strlen(icmap_ro_ai->key_name)) == 0) {
  961. return (CS_TRUE);
  962. }
  963. } else {
  964. if (strcmp(icmap_ro_ai->key_name, key_name) == 0) {
  965. return (CS_TRUE);
  966. }
  967. }
  968. }
  969. return (CS_FALSE);
  970. }