curl_trc.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) Daniel Stenberg, <[email protected]>, 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. #ifndef CURL_DISABLE_SMTP
  200. struct curl_trc_feat Curl_trc_feat_smtp = {
  201. "SMTP",
  202. CURL_LOG_LVL_NONE,
  203. };
  204. void Curl_trc_smtp(struct Curl_easy *data, const char *fmt, ...)
  205. {
  206. DEBUGASSERT(!strchr(fmt, '\n'));
  207. if(Curl_trc_ft_is_verbose(data, &Curl_trc_feat_smtp)) {
  208. va_list ap;
  209. va_start(ap, fmt);
  210. trc_infof(data, &Curl_trc_feat_smtp, fmt, ap);
  211. va_end(ap);
  212. }
  213. }
  214. #endif /* !CURL_DISABLE_SMTP */
  215. #ifdef USE_SSL
  216. struct curl_trc_feat Curl_trc_feat_ssls = {
  217. "SSLS",
  218. CURL_LOG_LVL_NONE,
  219. };
  220. void Curl_trc_ssls(struct Curl_easy *data, const char *fmt, ...)
  221. {
  222. DEBUGASSERT(!strchr(fmt, '\n'));
  223. if(Curl_trc_ft_is_verbose(data, &Curl_trc_feat_ssls)) {
  224. va_list ap;
  225. va_start(ap, fmt);
  226. trc_infof(data, &Curl_trc_feat_ssls, fmt, ap);
  227. va_end(ap);
  228. }
  229. }
  230. #endif /* USE_SSL */
  231. #if !defined(CURL_DISABLE_WEBSOCKETS) && !defined(CURL_DISABLE_HTTP)
  232. struct curl_trc_feat Curl_trc_feat_ws = {
  233. "WS",
  234. CURL_LOG_LVL_NONE,
  235. };
  236. void Curl_trc_ws(struct Curl_easy *data, const char *fmt, ...)
  237. {
  238. DEBUGASSERT(!strchr(fmt, '\n'));
  239. if(Curl_trc_ft_is_verbose(data, &Curl_trc_feat_ws)) {
  240. va_list ap;
  241. va_start(ap, fmt);
  242. trc_infof(data, &Curl_trc_feat_ws, fmt, ap);
  243. va_end(ap);
  244. }
  245. }
  246. #endif /* !CURL_DISABLE_WEBSOCKETS && !CURL_DISABLE_HTTP */
  247. #define TRC_CT_NONE (0)
  248. #define TRC_CT_PROTOCOL (1<<(0))
  249. #define TRC_CT_NETWORK (1<<(1))
  250. #define TRC_CT_PROXY (1<<(2))
  251. struct trc_feat_def {
  252. struct curl_trc_feat *feat;
  253. unsigned int category;
  254. };
  255. static struct trc_feat_def trc_feats[] = {
  256. { &Curl_trc_feat_read, TRC_CT_NONE },
  257. { &Curl_trc_feat_write, TRC_CT_NONE },
  258. #ifndef CURL_DISABLE_FTP
  259. { &Curl_trc_feat_ftp, TRC_CT_PROTOCOL },
  260. #endif
  261. #ifndef CURL_DISABLE_DOH
  262. { &Curl_doh_trc, TRC_CT_NETWORK },
  263. #endif
  264. #ifndef CURL_DISABLE_SMTP
  265. { &Curl_trc_feat_smtp, TRC_CT_PROTOCOL },
  266. #endif
  267. #ifdef USE_SSL
  268. { &Curl_trc_feat_ssls, TRC_CT_NETWORK },
  269. #endif
  270. #if !defined(CURL_DISABLE_WEBSOCKETS) && !defined(CURL_DISABLE_HTTP)
  271. { &Curl_trc_feat_ws, TRC_CT_PROTOCOL },
  272. #endif
  273. };
  274. struct trc_cft_def {
  275. struct Curl_cftype *cft;
  276. unsigned int category;
  277. };
  278. static struct trc_cft_def trc_cfts[] = {
  279. { &Curl_cft_tcp, TRC_CT_NETWORK },
  280. { &Curl_cft_udp, TRC_CT_NETWORK },
  281. { &Curl_cft_unix, TRC_CT_NETWORK },
  282. { &Curl_cft_tcp_accept, TRC_CT_NETWORK },
  283. { &Curl_cft_happy_eyeballs, TRC_CT_NETWORK },
  284. { &Curl_cft_setup, TRC_CT_PROTOCOL },
  285. #ifdef USE_NGHTTP2
  286. { &Curl_cft_nghttp2, TRC_CT_PROTOCOL },
  287. #endif
  288. #ifdef USE_SSL
  289. { &Curl_cft_ssl, TRC_CT_NETWORK },
  290. #ifndef CURL_DISABLE_PROXY
  291. { &Curl_cft_ssl_proxy, TRC_CT_PROXY },
  292. #endif
  293. #endif
  294. #if !defined(CURL_DISABLE_PROXY)
  295. #if !defined(CURL_DISABLE_HTTP)
  296. { &Curl_cft_h1_proxy, TRC_CT_PROXY },
  297. #ifdef USE_NGHTTP2
  298. { &Curl_cft_h2_proxy, TRC_CT_PROXY },
  299. #endif
  300. { &Curl_cft_http_proxy, TRC_CT_PROXY },
  301. #endif /* !CURL_DISABLE_HTTP */
  302. { &Curl_cft_haproxy, TRC_CT_PROXY },
  303. { &Curl_cft_socks_proxy, TRC_CT_PROXY },
  304. #endif /* !CURL_DISABLE_PROXY */
  305. #ifdef USE_HTTP3
  306. { &Curl_cft_http3, TRC_CT_PROTOCOL },
  307. #endif
  308. #if !defined(CURL_DISABLE_HTTP)
  309. { &Curl_cft_http_connect, TRC_CT_PROTOCOL },
  310. #endif
  311. };
  312. static void trc_apply_level_by_name(const char * const token, int lvl)
  313. {
  314. size_t i;
  315. for(i = 0; i < CURL_ARRAYSIZE(trc_cfts); ++i) {
  316. if(strcasecompare(token, trc_cfts[i].cft->name)) {
  317. trc_cfts[i].cft->log_level = lvl;
  318. break;
  319. }
  320. }
  321. for(i = 0; i < CURL_ARRAYSIZE(trc_feats); ++i) {
  322. if(strcasecompare(token, trc_feats[i].feat->name)) {
  323. trc_feats[i].feat->log_level = lvl;
  324. break;
  325. }
  326. }
  327. }
  328. static void trc_apply_level_by_category(int category, int lvl)
  329. {
  330. size_t i;
  331. for(i = 0; i < CURL_ARRAYSIZE(trc_cfts); ++i) {
  332. if(!category || (trc_cfts[i].category & category))
  333. trc_cfts[i].cft->log_level = lvl;
  334. }
  335. for(i = 0; i < CURL_ARRAYSIZE(trc_feats); ++i) {
  336. if(!category || (trc_feats[i].category & category))
  337. trc_feats[i].feat->log_level = lvl;
  338. }
  339. }
  340. static CURLcode trc_opt(const char *config)
  341. {
  342. char *token, *tok_buf, *tmp;
  343. int lvl;
  344. tmp = strdup(config);
  345. if(!tmp)
  346. return CURLE_OUT_OF_MEMORY;
  347. token = Curl_strtok_r(tmp, ", ", &tok_buf);
  348. while(token) {
  349. switch(*token) {
  350. case '-':
  351. lvl = CURL_LOG_LVL_NONE;
  352. ++token;
  353. break;
  354. case '+':
  355. lvl = CURL_LOG_LVL_INFO;
  356. ++token;
  357. break;
  358. default:
  359. lvl = CURL_LOG_LVL_INFO;
  360. break;
  361. }
  362. if(strcasecompare(token, "all"))
  363. trc_apply_level_by_category(TRC_CT_NONE, lvl);
  364. else if(strcasecompare(token, "protocol"))
  365. trc_apply_level_by_category(TRC_CT_PROTOCOL, lvl);
  366. else if(strcasecompare(token, "network"))
  367. trc_apply_level_by_category(TRC_CT_NETWORK, lvl);
  368. else if(strcasecompare(token, "proxy"))
  369. trc_apply_level_by_category(TRC_CT_PROXY, lvl);
  370. else
  371. trc_apply_level_by_name(token, lvl);
  372. token = Curl_strtok_r(NULL, ", ", &tok_buf);
  373. }
  374. free(tmp);
  375. return CURLE_OK;
  376. }
  377. CURLcode Curl_trc_opt(const char *config)
  378. {
  379. CURLcode result = config ? trc_opt(config) : CURLE_OK;
  380. #ifdef DEBUGBUILD
  381. /* CURL_DEBUG can override anything */
  382. if(!result) {
  383. const char *dbg_config = getenv("CURL_DEBUG");
  384. if(dbg_config)
  385. result = trc_opt(dbg_config);
  386. }
  387. #endif /* DEBUGBUILD */
  388. return result;
  389. }
  390. CURLcode Curl_trc_init(void)
  391. {
  392. #ifdef DEBUGBUILD
  393. return Curl_trc_opt(NULL);
  394. #else
  395. return CURLE_OK;
  396. #endif
  397. }
  398. #else /* defined(CURL_DISABLE_VERBOSE_STRINGS) */
  399. CURLcode Curl_trc_init(void)
  400. {
  401. return CURLE_OK;
  402. }
  403. void Curl_infof(struct Curl_easy *data, const char *fmt, ...)
  404. {
  405. (void)data; (void)fmt;
  406. }
  407. void Curl_trc_cf_infof(struct Curl_easy *data,
  408. struct Curl_cfilter *cf,
  409. const char *fmt, ...)
  410. {
  411. (void)data; (void)cf; (void)fmt;
  412. }
  413. struct curl_trc_feat;
  414. void Curl_trc_write(struct Curl_easy *data, const char *fmt, ...)
  415. {
  416. (void)data; (void)fmt;
  417. }
  418. void Curl_trc_read(struct Curl_easy *data, const char *fmt, ...)
  419. {
  420. (void)data; (void)fmt;
  421. }
  422. #ifndef CURL_DISABLE_FTP
  423. void Curl_trc_ftp(struct Curl_easy *data, const char *fmt, ...)
  424. {
  425. (void)data; (void)fmt;
  426. }
  427. #endif
  428. #ifndef CURL_DISABLE_SMTP
  429. void Curl_trc_smtp(struct Curl_easy *data, const char *fmt, ...)
  430. {
  431. (void)data; (void)fmt;
  432. }
  433. #endif
  434. #if !defined(CURL_DISABLE_WEBSOCKETS) || !defined(CURL_DISABLE_HTTP)
  435. void Curl_trc_ws(struct Curl_easy *data, const char *fmt, ...)
  436. {
  437. (void)data; (void)fmt;
  438. }
  439. #endif
  440. void Curl_trc_ssls(struct Curl_easy *data, const char *fmt, ...)
  441. {
  442. (void)data;
  443. (void)fmt;
  444. }
  445. #endif /* !defined(CURL_DISABLE_VERBOSE_STRINGS) */