uci_internal.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /*
  2. * libuci - Library for the Unified Configuration Interface
  3. * Copyright (C) 2008 Felix Fietkau <nbd@openwrt.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License version 2.1
  7. * as published by the Free Software Foundation
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. #ifndef __UCI_INTERNAL_H
  15. #define __UCI_INTERNAL_H
  16. #define __public
  17. #ifdef UCI_PLUGIN_SUPPORT
  18. #define __plugin extern
  19. #else
  20. #define __plugin static
  21. #endif
  22. struct uci_parse_context
  23. {
  24. /* error context */
  25. const char *reason;
  26. int line;
  27. int byte;
  28. /* private: */
  29. struct uci_package *package;
  30. struct uci_section *section;
  31. bool merge;
  32. FILE *file;
  33. const char *name;
  34. char *buf;
  35. int bufsz;
  36. };
  37. __plugin void *uci_malloc(struct uci_context *ctx, size_t size);
  38. __plugin void *uci_realloc(struct uci_context *ctx, void *ptr, size_t size);
  39. __plugin char *uci_strdup(struct uci_context *ctx, const char *str);
  40. __plugin void uci_add_history(struct uci_context *ctx, struct uci_list *list, int cmd, char *section, char *option, char *value);
  41. __plugin void uci_free_history(struct uci_history *h);
  42. __plugin struct uci_package *uci_alloc_package(struct uci_context *ctx, const char *name);
  43. #ifdef UCI_PLUGIN_SUPPORT
  44. /**
  45. * uci_add_backend: add an extra backend
  46. * @ctx: uci context
  47. * @name: name of the backend
  48. *
  49. * The default backend is "file", which uses /etc/config for config storage
  50. */
  51. __plugin int uci_add_backend(struct uci_context *ctx, struct uci_backend *b);
  52. /**
  53. * uci_add_backend: add an extra backend
  54. * @ctx: uci context
  55. * @name: name of the backend
  56. *
  57. * The default backend is "file", which uses /etc/config for config storage
  58. */
  59. __plugin int uci_del_backend(struct uci_context *ctx, struct uci_backend *b);
  60. #endif
  61. #define UCI_BACKEND(_var, _name, ...) \
  62. struct uci_backend _var = { \
  63. .e.list = { \
  64. .next = &_var.e.list, \
  65. .prev = &_var.e.list, \
  66. }, \
  67. .e.name = _name, \
  68. .e.type = UCI_TYPE_BACKEND, \
  69. .ptr = &_var, \
  70. __VA_ARGS__ \
  71. }
  72. /*
  73. * functions for debug and error handling, for internal use only
  74. */
  75. #ifdef UCI_DEBUG
  76. #define DPRINTF(...) fprintf(stderr, __VA_ARGS__)
  77. #else
  78. #define DPRINTF(...)
  79. #endif
  80. /*
  81. * throw an uci exception and store the error number
  82. * in the context.
  83. */
  84. #define UCI_THROW(ctx, err) do { \
  85. DPRINTF("Exception: %s in %s, %s:%d\n", #err, __func__, __FILE__, __LINE__); \
  86. longjmp(ctx->trap, err); \
  87. } while (0)
  88. /*
  89. * store the return address for handling exceptions
  90. * needs to be called in every externally visible library function
  91. *
  92. * NB: this does not handle recursion at all. Calling externally visible
  93. * functions from other uci functions is only allowed at the end of the
  94. * calling function, or by wrapping the function call in UCI_TRAP_SAVE
  95. * and UCI_TRAP_RESTORE.
  96. */
  97. #define UCI_HANDLE_ERR(ctx) do { \
  98. DPRINTF("ENTER: %s\n", __func__); \
  99. int __val = 0; \
  100. ctx->errno = 0; \
  101. if (!ctx) \
  102. return UCI_ERR_INVAL; \
  103. if (!ctx->internal) \
  104. __val = setjmp(ctx->trap); \
  105. ctx->internal = false; \
  106. if (__val) { \
  107. DPRINTF("LEAVE: %s, ret=%d\n", __func__, __val); \
  108. ctx->errno = __val; \
  109. return __val; \
  110. } \
  111. } while (0)
  112. /*
  113. * In a block enclosed by UCI_TRAP_SAVE and UCI_TRAP_RESTORE, all exceptions
  114. * are intercepted and redirected to the label specified in 'handler'
  115. * after UCI_TRAP_RESTORE, or when reaching the 'handler' label, the old
  116. * exception handler is restored
  117. */
  118. #define UCI_TRAP_SAVE(ctx, handler) do { \
  119. jmp_buf __old_trap; \
  120. int __val; \
  121. memcpy(__old_trap, ctx->trap, sizeof(ctx->trap)); \
  122. __val = setjmp(ctx->trap); \
  123. if (__val) { \
  124. ctx->errno = __val; \
  125. memcpy(ctx->trap, __old_trap, sizeof(ctx->trap)); \
  126. goto handler; \
  127. }
  128. #define UCI_TRAP_RESTORE(ctx) \
  129. memcpy(ctx->trap, __old_trap, sizeof(ctx->trap)); \
  130. } while(0)
  131. /**
  132. * UCI_INTERNAL: Do an internal call of a public API function
  133. *
  134. * Sets Exception handling to passthrough mode.
  135. * Allows API functions to change behavior compared to public use
  136. */
  137. #define UCI_INTERNAL(func, ctx, ...) do { \
  138. ctx->internal = true; \
  139. func(ctx, __VA_ARGS__); \
  140. } while (0)
  141. /*
  142. * check the specified condition.
  143. * throw an invalid argument exception if it's false
  144. */
  145. #define UCI_ASSERT(ctx, expr) do { \
  146. if (!(expr)) { \
  147. DPRINTF("[%s:%d] Assertion failed\n", __FILE__, __LINE__); \
  148. UCI_THROW(ctx, UCI_ERR_INVAL); \
  149. } \
  150. } while (0)
  151. #endif