curl_trc.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at https://curl.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. * SPDX-License-Identifier: curl
  22. *
  23. ***************************************************************************/
  24. #include "curl_setup.h"
  25. #include <curl/curl.h>
  26. #include "curl_trc.h"
  27. #include "urldata.h"
  28. #include "easyif.h"
  29. #include "cfilters.h"
  30. #include "timeval.h"
  31. #include "multiif.h"
  32. #include "strcase.h"
  33. #include "cf-socket.h"
  34. #include "connect.h"
  35. #include "doh.h"
  36. #include "http2.h"
  37. #include "http_proxy.h"
  38. #include "cf-h1-proxy.h"
  39. #include "cf-h2-proxy.h"
  40. #include "cf-haproxy.h"
  41. #include "cf-https-connect.h"
  42. #include "socks.h"
  43. #include "strtok.h"
  44. #include "vtls/vtls.h"
  45. #include "vquic/vquic.h"
  46. /* The last 3 #include files should be in this order */
  47. #include "curl_printf.h"
  48. #include "curl_memory.h"
  49. #include "memdebug.h"
  50. void Curl_debug(struct Curl_easy *data, curl_infotype type,
  51. char *ptr, size_t size)
  52. {
  53. if(data->set.verbose) {
  54. static const char s_infotype[CURLINFO_END][3] = {
  55. "* ", "< ", "> ", "{ ", "} ", "{ ", "} " };
  56. if(data->set.fdebug) {
  57. bool inCallback = Curl_is_in_callback(data);
  58. Curl_set_in_callback(data, true);
  59. (void)(*data->set.fdebug)(data, type, ptr, size, data->set.debugdata);
  60. Curl_set_in_callback(data, inCallback);
  61. }
  62. else {
  63. switch(type) {
  64. case CURLINFO_TEXT:
  65. case CURLINFO_HEADER_OUT:
  66. case CURLINFO_HEADER_IN:
  67. fwrite(s_infotype[type], 2, 1, data->set.err);
  68. fwrite(ptr, size, 1, data->set.err);
  69. break;
  70. default: /* nada */
  71. break;
  72. }
  73. }
  74. }
  75. }
  76. /* Curl_failf() is for messages stating why we failed.
  77. * The message SHALL NOT include any LF or CR.
  78. */
  79. void Curl_failf(struct Curl_easy *data, const char *fmt, ...)
  80. {
  81. DEBUGASSERT(!strchr(fmt, '\n'));
  82. if(data->set.verbose || data->set.errorbuffer) {
  83. va_list ap;
  84. int len;
  85. char error[CURL_ERROR_SIZE + 2];
  86. va_start(ap, fmt);
  87. len = mvsnprintf(error, CURL_ERROR_SIZE, fmt, ap);
  88. if(data->set.errorbuffer && !data->state.errorbuf) {
  89. strcpy(data->set.errorbuffer, error);
  90. data->state.errorbuf = TRUE; /* wrote error string */
  91. }
  92. error[len++] = '\n';
  93. error[len] = '\0';
  94. Curl_debug(data, CURLINFO_TEXT, error, len);
  95. va_end(ap);
  96. }
  97. }
  98. #if !defined(CURL_DISABLE_VERBOSE_STRINGS)
  99. /* Curl_infof() is for info message along the way */
  100. #define MAXINFO 2048
  101. void Curl_infof(struct Curl_easy *data, const char *fmt, ...)
  102. {
  103. DEBUGASSERT(!strchr(fmt, '\n'));
  104. if(Curl_trc_is_verbose(data)) {
  105. va_list ap;
  106. int len = 0;
  107. char buffer[MAXINFO + 2];
  108. if(data->state.feat)
  109. len = msnprintf(buffer, MAXINFO, "[%s] ", data->state.feat->name);
  110. va_start(ap, fmt);
  111. len += mvsnprintf(buffer + len, MAXINFO - len, fmt, ap);
  112. va_end(ap);
  113. buffer[len++] = '\n';
  114. buffer[len] = '\0';
  115. Curl_debug(data, CURLINFO_TEXT, buffer, len);
  116. }
  117. }
  118. void Curl_trc_cf_infof(struct Curl_easy *data, struct Curl_cfilter *cf,
  119. const char *fmt, ...)
  120. {
  121. DEBUGASSERT(cf);
  122. if(Curl_trc_cf_is_verbose(cf, data)) {
  123. va_list ap;
  124. int len = 0;
  125. char buffer[MAXINFO + 2];
  126. if(data->state.feat)
  127. len += msnprintf(buffer + len, MAXINFO - len, "[%s] ",
  128. data->state.feat->name);
  129. if(cf->sockindex)
  130. len += msnprintf(buffer + len, MAXINFO - len, "[%s-%d] ",
  131. cf->cft->name, cf->sockindex);
  132. else
  133. len += msnprintf(buffer + len, MAXINFO - len, "[%s] ", cf->cft->name);
  134. va_start(ap, fmt);
  135. len += mvsnprintf(buffer + len, MAXINFO - len, fmt, ap);
  136. va_end(ap);
  137. buffer[len++] = '\n';
  138. buffer[len] = '\0';
  139. Curl_debug(data, CURLINFO_TEXT, buffer, len);
  140. }
  141. }
  142. static struct curl_trc_feat *trc_feats[] = {
  143. #ifndef CURL_DISABLE_DOH
  144. &Curl_doh_trc,
  145. #endif
  146. NULL,
  147. };
  148. static struct Curl_cftype *cf_types[] = {
  149. &Curl_cft_tcp,
  150. &Curl_cft_udp,
  151. &Curl_cft_unix,
  152. &Curl_cft_tcp_accept,
  153. &Curl_cft_happy_eyeballs,
  154. &Curl_cft_setup,
  155. #ifdef USE_NGHTTP2
  156. &Curl_cft_nghttp2,
  157. #endif
  158. #ifdef USE_SSL
  159. &Curl_cft_ssl,
  160. #ifndef CURL_DISABLE_PROXY
  161. &Curl_cft_ssl_proxy,
  162. #endif
  163. #endif
  164. #if !defined(CURL_DISABLE_PROXY)
  165. #if !defined(CURL_DISABLE_HTTP)
  166. &Curl_cft_h1_proxy,
  167. #ifdef USE_NGHTTP2
  168. &Curl_cft_h2_proxy,
  169. #endif
  170. &Curl_cft_http_proxy,
  171. #endif /* !CURL_DISABLE_HTTP */
  172. &Curl_cft_haproxy,
  173. &Curl_cft_socks_proxy,
  174. #endif /* !CURL_DISABLE_PROXY */
  175. #ifdef ENABLE_QUIC
  176. &Curl_cft_http3,
  177. #endif
  178. #if !defined(CURL_DISABLE_HTTP) && !defined(USE_HYPER)
  179. &Curl_cft_http_connect,
  180. #endif
  181. NULL,
  182. };
  183. CURLcode Curl_trc_opt(const char *config)
  184. {
  185. char *token, *tok_buf, *tmp;
  186. size_t i;
  187. int lvl;
  188. tmp = strdup(config);
  189. if(!tmp)
  190. return CURLE_OUT_OF_MEMORY;
  191. token = strtok_r(tmp, ", ", &tok_buf);
  192. while(token) {
  193. switch(*token) {
  194. case '-':
  195. lvl = CURL_LOG_LVL_NONE;
  196. ++token;
  197. break;
  198. case '+':
  199. lvl = CURL_LOG_LVL_INFO;
  200. ++token;
  201. break;
  202. default:
  203. lvl = CURL_LOG_LVL_INFO;
  204. break;
  205. }
  206. for(i = 0; cf_types[i]; ++i) {
  207. if(strcasecompare(token, "all")) {
  208. cf_types[i]->log_level = lvl;
  209. }
  210. else if(strcasecompare(token, cf_types[i]->name)) {
  211. cf_types[i]->log_level = lvl;
  212. break;
  213. }
  214. }
  215. for(i = 0; trc_feats[i]; ++i) {
  216. if(strcasecompare(token, "all")) {
  217. trc_feats[i]->log_level = lvl;
  218. }
  219. else if(strcasecompare(token, trc_feats[i]->name)) {
  220. trc_feats[i]->log_level = lvl;
  221. break;
  222. }
  223. }
  224. token = strtok_r(NULL, ", ", &tok_buf);
  225. }
  226. free(tmp);
  227. return CURLE_OK;
  228. }
  229. CURLcode Curl_trc_init(void)
  230. {
  231. #ifdef DEBUGBUILD
  232. /* WIP: we use the auto-init from an env var only in DEBUG builds for
  233. * convenience. */
  234. const char *config = getenv("CURL_DEBUG");
  235. if(config) {
  236. return Curl_trc_opt(config);
  237. }
  238. #endif /* DEBUGBUILD */
  239. return CURLE_OK;
  240. }
  241. #else /* defined(CURL_DISABLE_VERBOSE_STRINGS) */
  242. CURLcode Curl_trc_init(void)
  243. {
  244. return CURLE_OK;
  245. }
  246. #endif /* !defined(CURL_DISABLE_VERBOSE_STRINGS) */