curl_trc.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  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. static void trc_infof(struct Curl_easy *data, struct curl_trc_feat *feat,
  102. const char * const fmt, va_list ap) CURL_PRINTF(3, 0);
  103. static void trc_infof(struct Curl_easy *data, struct curl_trc_feat *feat,
  104. const char * const fmt, va_list ap)
  105. {
  106. int len = 0;
  107. char buffer[MAXINFO + 5];
  108. if(feat)
  109. len = msnprintf(buffer, (MAXINFO + 1), "[%s] ", feat->name);
  110. len += mvsnprintf(buffer + len, (MAXINFO + 1) - len, fmt, ap);
  111. if(len >= MAXINFO) { /* too long, shorten with '...' */
  112. --len;
  113. buffer[len++] = '.';
  114. buffer[len++] = '.';
  115. buffer[len++] = '.';
  116. }
  117. buffer[len++] = '\n';
  118. buffer[len] = '\0';
  119. Curl_debug(data, CURLINFO_TEXT, buffer, len);
  120. }
  121. void Curl_infof(struct Curl_easy *data, const char *fmt, ...)
  122. {
  123. DEBUGASSERT(!strchr(fmt, '\n'));
  124. if(Curl_trc_is_verbose(data)) {
  125. va_list ap;
  126. va_start(ap, fmt);
  127. trc_infof(data, data->state.feat, fmt, ap);
  128. va_end(ap);
  129. }
  130. }
  131. void Curl_trc_cf_infof(struct Curl_easy *data, struct Curl_cfilter *cf,
  132. const char *fmt, ...)
  133. {
  134. DEBUGASSERT(cf);
  135. if(Curl_trc_cf_is_verbose(cf, data)) {
  136. va_list ap;
  137. int len = 0;
  138. char buffer[MAXINFO + 2];
  139. if(data->state.feat)
  140. len += msnprintf(buffer + len, MAXINFO - len, "[%s] ",
  141. data->state.feat->name);
  142. if(cf->sockindex)
  143. len += msnprintf(buffer + len, MAXINFO - len, "[%s-%d] ",
  144. cf->cft->name, cf->sockindex);
  145. else
  146. len += msnprintf(buffer + len, MAXINFO - len, "[%s] ", cf->cft->name);
  147. va_start(ap, fmt);
  148. len += mvsnprintf(buffer + len, MAXINFO - len, fmt, ap);
  149. va_end(ap);
  150. buffer[len++] = '\n';
  151. buffer[len] = '\0';
  152. Curl_debug(data, CURLINFO_TEXT, buffer, len);
  153. }
  154. }
  155. struct curl_trc_feat Curl_trc_feat_read = {
  156. "READ",
  157. CURL_LOG_LVL_NONE,
  158. };
  159. struct curl_trc_feat Curl_trc_feat_write = {
  160. "WRITE",
  161. CURL_LOG_LVL_NONE,
  162. };
  163. void Curl_trc_read(struct Curl_easy *data, const char *fmt, ...)
  164. {
  165. DEBUGASSERT(!strchr(fmt, '\n'));
  166. if(Curl_trc_ft_is_verbose(data, &Curl_trc_feat_read)) {
  167. va_list ap;
  168. va_start(ap, fmt);
  169. trc_infof(data, &Curl_trc_feat_read, fmt, ap);
  170. va_end(ap);
  171. }
  172. }
  173. void Curl_trc_write(struct Curl_easy *data, const char *fmt, ...)
  174. {
  175. DEBUGASSERT(!strchr(fmt, '\n'));
  176. if(Curl_trc_ft_is_verbose(data, &Curl_trc_feat_write)) {
  177. va_list ap;
  178. va_start(ap, fmt);
  179. trc_infof(data, &Curl_trc_feat_write, fmt, ap);
  180. va_end(ap);
  181. }
  182. }
  183. #ifndef CURL_DISABLE_FTP
  184. struct curl_trc_feat Curl_trc_feat_ftp = {
  185. "FTP",
  186. CURL_LOG_LVL_NONE,
  187. };
  188. void Curl_trc_ftp(struct Curl_easy *data, const char *fmt, ...)
  189. {
  190. DEBUGASSERT(!strchr(fmt, '\n'));
  191. if(Curl_trc_ft_is_verbose(data, &Curl_trc_feat_ftp)) {
  192. va_list ap;
  193. va_start(ap, fmt);
  194. trc_infof(data, &Curl_trc_feat_ftp, fmt, ap);
  195. va_end(ap);
  196. }
  197. }
  198. #endif /* !CURL_DISABLE_FTP */
  199. static struct curl_trc_feat *trc_feats[] = {
  200. &Curl_trc_feat_read,
  201. &Curl_trc_feat_write,
  202. #ifndef CURL_DISABLE_FTP
  203. &Curl_trc_feat_ftp,
  204. #endif
  205. #ifndef CURL_DISABLE_DOH
  206. &Curl_doh_trc,
  207. #endif
  208. NULL,
  209. };
  210. static struct Curl_cftype *cf_types[] = {
  211. &Curl_cft_tcp,
  212. &Curl_cft_udp,
  213. &Curl_cft_unix,
  214. &Curl_cft_tcp_accept,
  215. &Curl_cft_happy_eyeballs,
  216. &Curl_cft_setup,
  217. #ifdef USE_NGHTTP2
  218. &Curl_cft_nghttp2,
  219. #endif
  220. #ifdef USE_SSL
  221. &Curl_cft_ssl,
  222. #ifndef CURL_DISABLE_PROXY
  223. &Curl_cft_ssl_proxy,
  224. #endif
  225. #endif
  226. #if !defined(CURL_DISABLE_PROXY)
  227. #if !defined(CURL_DISABLE_HTTP)
  228. &Curl_cft_h1_proxy,
  229. #ifdef USE_NGHTTP2
  230. &Curl_cft_h2_proxy,
  231. #endif
  232. &Curl_cft_http_proxy,
  233. #endif /* !CURL_DISABLE_HTTP */
  234. &Curl_cft_haproxy,
  235. &Curl_cft_socks_proxy,
  236. #endif /* !CURL_DISABLE_PROXY */
  237. #ifdef USE_HTTP3
  238. &Curl_cft_http3,
  239. #endif
  240. #if !defined(CURL_DISABLE_HTTP) && !defined(USE_HYPER)
  241. &Curl_cft_http_connect,
  242. #endif
  243. NULL,
  244. };
  245. CURLcode Curl_trc_opt(const char *config)
  246. {
  247. char *token, *tok_buf, *tmp;
  248. size_t i;
  249. int lvl;
  250. tmp = strdup(config);
  251. if(!tmp)
  252. return CURLE_OUT_OF_MEMORY;
  253. token = strtok_r(tmp, ", ", &tok_buf);
  254. while(token) {
  255. switch(*token) {
  256. case '-':
  257. lvl = CURL_LOG_LVL_NONE;
  258. ++token;
  259. break;
  260. case '+':
  261. lvl = CURL_LOG_LVL_INFO;
  262. ++token;
  263. break;
  264. default:
  265. lvl = CURL_LOG_LVL_INFO;
  266. break;
  267. }
  268. for(i = 0; cf_types[i]; ++i) {
  269. if(strcasecompare(token, "all")) {
  270. cf_types[i]->log_level = lvl;
  271. }
  272. else if(strcasecompare(token, cf_types[i]->name)) {
  273. cf_types[i]->log_level = lvl;
  274. break;
  275. }
  276. }
  277. for(i = 0; trc_feats[i]; ++i) {
  278. if(strcasecompare(token, "all")) {
  279. trc_feats[i]->log_level = lvl;
  280. }
  281. else if(strcasecompare(token, trc_feats[i]->name)) {
  282. trc_feats[i]->log_level = lvl;
  283. break;
  284. }
  285. }
  286. token = strtok_r(NULL, ", ", &tok_buf);
  287. }
  288. free(tmp);
  289. return CURLE_OK;
  290. }
  291. CURLcode Curl_trc_init(void)
  292. {
  293. #ifdef DEBUGBUILD
  294. /* WIP: we use the auto-init from an env var only in DEBUG builds for
  295. * convenience. */
  296. const char *config = getenv("CURL_DEBUG");
  297. if(config) {
  298. return Curl_trc_opt(config);
  299. }
  300. #endif /* DEBUGBUILD */
  301. return CURLE_OK;
  302. }
  303. #else /* defined(CURL_DISABLE_VERBOSE_STRINGS) */
  304. CURLcode Curl_trc_init(void)
  305. {
  306. return CURLE_OK;
  307. }
  308. #endif /* !defined(CURL_DISABLE_VERBOSE_STRINGS) */