strings.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2008, Digium, Inc.
  5. *
  6. * Tilghman Lesher <tlesher@digium.com>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. */
  18. /*! \file
  19. *
  20. * \brief String manipulation API
  21. *
  22. * \author Tilghman Lesher <tilghman@digium.com>
  23. */
  24. /*** MAKEOPTS
  25. <category name="MENUSELECT_CFLAGS" displayname="Compiler Flags" positive_output="yes">
  26. <member name="DEBUG_OPAQUE" displayname="Change ast_str internals to detect improper usage" touch_on_change="include/asterisk/strings.h">
  27. <defaultenabled>yes</defaultenabled>
  28. </member>
  29. </category>
  30. ***/
  31. /*** MODULEINFO
  32. <support_level>core</support_level>
  33. ***/
  34. #include "asterisk.h"
  35. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  36. #include "asterisk/strings.h"
  37. #include "asterisk/pbx.h"
  38. /*!
  39. * core handler for dynamic strings.
  40. * This is not meant to be called directly, but rather through the
  41. * various wrapper macros
  42. * ast_str_set(...)
  43. * ast_str_append(...)
  44. * ast_str_set_va(...)
  45. * ast_str_append_va(...)
  46. */
  47. #if (defined(MALLOC_DEBUG) && !defined(STANDALONE))
  48. int __ast_debug_str_helper(struct ast_str **buf, ssize_t max_len,
  49. int append, const char *fmt, va_list ap, const char *file, int lineno, const char *function)
  50. #else
  51. int __ast_str_helper(struct ast_str **buf, ssize_t max_len,
  52. int append, const char *fmt, va_list ap)
  53. #endif
  54. {
  55. int res, need;
  56. int offset = (append && (*buf)->__AST_STR_LEN) ? (*buf)->__AST_STR_USED : 0;
  57. va_list aq;
  58. do {
  59. if (max_len < 0) {
  60. max_len = (*buf)->__AST_STR_LEN; /* don't exceed the allocated space */
  61. }
  62. /*
  63. * Ask vsnprintf how much space we need. Remember that vsnprintf
  64. * does not count the final <code>'\\0'</code> so we must add 1.
  65. */
  66. va_copy(aq, ap);
  67. res = vsnprintf((*buf)->__AST_STR_STR + offset, (*buf)->__AST_STR_LEN - offset, fmt, aq);
  68. need = res + offset + 1;
  69. /*
  70. * If there is not enough space and we are below the max length,
  71. * reallocate the buffer and return a message telling to retry.
  72. */
  73. if (need > (*buf)->__AST_STR_LEN && (max_len == 0 || (*buf)->__AST_STR_LEN < max_len) ) {
  74. int len = (int)(*buf)->__AST_STR_LEN;
  75. if (max_len && max_len < need) { /* truncate as needed */
  76. need = max_len;
  77. } else if (max_len == 0) { /* if unbounded, give more room for next time */
  78. need += 16 + need / 4;
  79. }
  80. if (0) { /* debugging */
  81. ast_verbose("extend from %d to %d\n", len, need);
  82. }
  83. if (
  84. #if (defined(MALLOC_DEBUG) && !defined(STANDALONE))
  85. _ast_str_make_space(buf, need, file, lineno, function)
  86. #else
  87. ast_str_make_space(buf, need)
  88. #endif
  89. ) {
  90. ast_verbose("failed to extend from %d to %d\n", len, need);
  91. va_end(aq);
  92. return AST_DYNSTR_BUILD_FAILED;
  93. }
  94. (*buf)->__AST_STR_STR[offset] = '\0'; /* Truncate the partial write. */
  95. /* Restart va_copy before calling vsnprintf() again. */
  96. va_end(aq);
  97. continue;
  98. }
  99. va_end(aq);
  100. break;
  101. } while (1);
  102. /* update space used, keep in mind the truncation */
  103. (*buf)->__AST_STR_USED = (res + offset > (*buf)->__AST_STR_LEN) ? (*buf)->__AST_STR_LEN - 1: res + offset;
  104. return res;
  105. }
  106. char *__ast_str_helper2(struct ast_str **buf, ssize_t maxlen, const char *src, size_t maxsrc, int append, int escapecommas)
  107. {
  108. int dynamic = 0;
  109. char *ptr = append ? &((*buf)->__AST_STR_STR[(*buf)->__AST_STR_USED]) : (*buf)->__AST_STR_STR;
  110. if (maxlen < 1) {
  111. if (maxlen == 0) {
  112. dynamic = 1;
  113. }
  114. maxlen = (*buf)->__AST_STR_LEN;
  115. }
  116. while (*src && maxsrc && maxlen && (!escapecommas || (maxlen - 1))) {
  117. if (escapecommas && (*src == '\\' || *src == ',')) {
  118. *ptr++ = '\\';
  119. maxlen--;
  120. (*buf)->__AST_STR_USED++;
  121. }
  122. *ptr++ = *src++;
  123. maxsrc--;
  124. maxlen--;
  125. (*buf)->__AST_STR_USED++;
  126. if ((ptr >= (*buf)->__AST_STR_STR + (*buf)->__AST_STR_LEN - 3) ||
  127. (dynamic && (!maxlen || (escapecommas && !(maxlen - 1))))) {
  128. char *oldbase = (*buf)->__AST_STR_STR;
  129. size_t old = (*buf)->__AST_STR_LEN;
  130. if (ast_str_make_space(buf, (*buf)->__AST_STR_LEN * 2)) {
  131. /* If the buffer can't be extended, end it. */
  132. break;
  133. }
  134. /* What we extended the buffer by */
  135. maxlen = old;
  136. ptr += (*buf)->__AST_STR_STR - oldbase;
  137. }
  138. }
  139. if (__builtin_expect(!maxlen, 0)) {
  140. ptr--;
  141. }
  142. *ptr = '\0';
  143. return (*buf)->__AST_STR_STR;
  144. }
  145. static int str_hash(const void *obj, const int flags)
  146. {
  147. return ast_str_hash(obj);
  148. }
  149. static int str_cmp(void *lhs, void *rhs, int flags)
  150. {
  151. return strcmp(lhs, rhs) ? 0 : CMP_MATCH;
  152. }
  153. struct ao2_container *ast_str_container_alloc_options(enum ao2_container_opts opts, int buckets)
  154. {
  155. return ao2_container_alloc_options(opts, buckets, str_hash, str_cmp);
  156. }
  157. int ast_str_container_add(struct ao2_container *str_container, const char *add)
  158. {
  159. char *ao2_add;
  160. /* The ao2_add object is immutable so it doesn't need a lock of its own. */
  161. ao2_add = ao2_alloc_options(strlen(add) + 1, NULL, AO2_ALLOC_OPT_LOCK_NOLOCK);
  162. if (!ao2_add) {
  163. return -1;
  164. }
  165. strcpy(ao2_add, add);/* Safe */
  166. ao2_link(str_container, ao2_add);
  167. ao2_ref(ao2_add, -1);
  168. return 0;
  169. }
  170. void ast_str_container_remove(struct ao2_container *str_container, const char *remove)
  171. {
  172. ao2_find(str_container, remove, OBJ_SEARCH_KEY | OBJ_NODATA | OBJ_UNLINK);
  173. }