log.c 27 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024
  1. /* Copyright (c) 2001, Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2008, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /* $Id$ */
  7. const char log_c_id[] = "$Id$";
  8. /**
  9. * \file log.c
  10. * \brief Functions to send messages to log files or the console.
  11. **/
  12. #include "orconfig.h"
  13. #include <stdarg.h>
  14. #include <assert.h>
  15. // #include <stdio.h>
  16. #include <stdlib.h>
  17. #include <string.h>
  18. #ifdef HAVE_SYS_TIME_H
  19. #include <sys/time.h>
  20. #endif
  21. #ifdef HAVE_TIME_H
  22. #include <time.h>
  23. #endif
  24. #ifdef HAVE_UNISTD_H
  25. #include <unistd.h>
  26. #endif
  27. #ifdef HAVE_SYS_TYPES_H
  28. #include <sys/types.h>
  29. #endif
  30. #ifdef HAVE_FCNTL_H
  31. #include <fcntl.h>
  32. #endif
  33. #include "compat.h"
  34. #include "util.h"
  35. #define LOG_PRIVATE
  36. #include "log.h"
  37. #include "container.h"
  38. #include <event.h>
  39. #define TRUNCATED_STR "[...truncated]"
  40. #define TRUNCATED_STR_LEN 14
  41. /** Information for a single logfile; only used in log.c */
  42. typedef struct logfile_t {
  43. struct logfile_t *next; /**< Next logfile_t in the linked list. */
  44. char *filename; /**< Filename to open. */
  45. int fd; /**< fd to receive log messages, or -1 for none. */
  46. int seems_dead; /**< Boolean: true if the stream seems to be kaput. */
  47. int needs_close; /**< Boolean: true if the stream gets closed on shutdown. */
  48. int is_temporary; /**< Boolean: close after initializing logging subsystem.*/
  49. int is_syslog; /**< Boolean: send messages to syslog. */
  50. log_callback callback; /**< If not NULL, send messages to this function. */
  51. log_severity_list_t *severities; /**< Which severity of messages should we
  52. * log for each log domain? */
  53. } logfile_t;
  54. static void log_free(logfile_t *victim);
  55. /** Helper: map a log severity to descriptive string. */
  56. static INLINE const char *
  57. sev_to_string(int severity)
  58. {
  59. switch (severity) {
  60. case LOG_DEBUG: return "debug";
  61. case LOG_INFO: return "info";
  62. case LOG_NOTICE: return "notice";
  63. case LOG_WARN: return "warn";
  64. case LOG_ERR: return "err";
  65. default: /* Call assert, not tor_assert, since tor_assert
  66. * calls log on failure. */
  67. assert(0); return "UNKNOWN";
  68. }
  69. }
  70. /** Helper: decide whether to include the function name in the log message. */
  71. static INLINE int
  72. should_log_function_name(log_domain_mask_t domain, int severity)
  73. {
  74. switch (severity) {
  75. case LOG_DEBUG:
  76. case LOG_INFO:
  77. /* All debugging messages occur in interesting places. */
  78. return 1;
  79. case LOG_NOTICE:
  80. case LOG_WARN:
  81. case LOG_ERR:
  82. /* We care about places where bugs occur. */
  83. return (domain == LD_BUG);
  84. default:
  85. /* Call assert, not tor_assert, since tor_assert calls log on failure. */
  86. assert(0); return 0;
  87. }
  88. }
  89. #define USE_LOG_MUTEX
  90. #ifdef USE_LOG_MUTEX
  91. /** A mutex to guard changes to logfiles and logging. */
  92. static tor_mutex_t *log_mutex = NULL;
  93. #endif
  94. /** Linked list of logfile_t. */
  95. static logfile_t *logfiles = NULL;
  96. #ifdef HAVE_SYSLOG_H
  97. static int syslog_count = 0;
  98. #endif
  99. #ifdef USE_LOG_MUTEX
  100. #define LOCK_LOGS() STMT_BEGIN \
  101. tor_mutex_acquire(log_mutex); \
  102. STMT_END
  103. #define UNLOCK_LOGS() STMT_BEGIN tor_mutex_release(log_mutex); STMT_END
  104. #else
  105. #define LOCK_LOGS() STMT_NIL
  106. #define UNLOCK_LOGS() STMT_NIL
  107. #endif
  108. /* What's the lowest log level anybody cares about? */
  109. int _log_global_min_severity = LOG_NOTICE;
  110. static void delete_log(logfile_t *victim);
  111. static void close_log(logfile_t *victim);
  112. /** Name of the application: used to generate the message we write at the
  113. * start of each new log. */
  114. static char *appname = NULL;
  115. /** Set the "application name" for the logs to <b>name</b>: we'll use this
  116. * name in the message we write when starting up, and at the start of each new
  117. * log.
  118. *
  119. * Tor uses this string to write the version number to the log file. */
  120. void
  121. log_set_application_name(const char *name)
  122. {
  123. tor_free(appname);
  124. appname = name ? tor_strdup(name) : NULL;
  125. }
  126. /** Helper: Write the standard prefix for log lines to a
  127. * <b>buf_len</b> character buffer in <b>buf</b>.
  128. */
  129. static INLINE size_t
  130. _log_prefix(char *buf, size_t buf_len, int severity)
  131. {
  132. time_t t;
  133. struct timeval now;
  134. struct tm tm;
  135. size_t n;
  136. int r;
  137. tor_gettimeofday(&now);
  138. t = (time_t)now.tv_sec;
  139. n = strftime(buf, buf_len, "%b %d %H:%M:%S", tor_localtime_r(&t, &tm));
  140. r = tor_snprintf(buf+n, buf_len-n, ".%.3ld [%s] ",
  141. (long)now.tv_usec / 1000, sev_to_string(severity));
  142. if (r<0)
  143. return buf_len-1;
  144. else
  145. return n+r;
  146. }
  147. /** If lf refers to an actual file that we have just opened, and the file
  148. * contains no data, log an "opening new logfile" message at the top.
  149. *
  150. * Return -1 if the log is broken and needs to be deleted, else return 0.
  151. */
  152. static int
  153. log_tor_version(logfile_t *lf, int reset)
  154. {
  155. char buf[256];
  156. size_t n;
  157. int is_new;
  158. if (!lf->needs_close)
  159. /* If it doesn't get closed, it isn't really a file. */
  160. return 0;
  161. if (lf->is_temporary)
  162. /* If it's temporary, it isn't really a file. */
  163. return 0;
  164. is_new = lf->fd >= 0 && tor_fd_getpos(lf->fd) == 0;
  165. if (reset && !is_new)
  166. /* We are resetting, but we aren't at the start of the file; no
  167. * need to log again. */
  168. return 0;
  169. n = _log_prefix(buf, sizeof(buf), LOG_NOTICE);
  170. if (appname) {
  171. tor_snprintf(buf+n, sizeof(buf)-n,
  172. "%s opening %slog file.\n", appname, is_new?"new ":"");
  173. } else {
  174. tor_snprintf(buf+n, sizeof(buf)-n,
  175. "Tor %s opening %slog file.\n", VERSION, is_new?"new ":"");
  176. }
  177. if (write_all(lf->fd, buf, strlen(buf), 0) < 0) /* error */
  178. return -1; /* failed */
  179. return 0;
  180. }
  181. /** Helper: Format a log message into a fixed-sized buffer. (This is
  182. * factored out of <b>logv</b> so that we never format a message more
  183. * than once.) Return a pointer to the first character of the message
  184. * portion of the formatted string.
  185. */
  186. static INLINE char *
  187. format_msg(char *buf, size_t buf_len,
  188. log_domain_mask_t domain, int severity, const char *funcname,
  189. const char *format, va_list ap, size_t *msg_len_out)
  190. {
  191. size_t n;
  192. int r;
  193. char *end_of_prefix;
  194. assert(buf_len >= 2); /* prevent integer underflow */
  195. buf_len -= 2; /* subtract 2 characters so we have room for \n\0 */
  196. n = _log_prefix(buf, buf_len, severity);
  197. end_of_prefix = buf+n;
  198. if (funcname && should_log_function_name(domain, severity)) {
  199. r = tor_snprintf(buf+n, buf_len-n, "%s(): ", funcname);
  200. if (r<0)
  201. n = strlen(buf);
  202. else
  203. n += r;
  204. }
  205. if (domain == LD_BUG && buf_len-n > 6) {
  206. memcpy(buf+n, "Bug: ", 6);
  207. n += 5;
  208. }
  209. r = tor_vsnprintf(buf+n,buf_len-n,format,ap);
  210. if (r < 0) {
  211. /* The message was too long; overwrite the end of the buffer with
  212. * "[...truncated]" */
  213. if (buf_len >= TRUNCATED_STR_LEN) {
  214. size_t offset = buf_len-TRUNCATED_STR_LEN;
  215. /* We have an extra 2 characters after buf_len to hold the \n\0,
  216. * so it's safe to add 1 to the size here. */
  217. strlcpy(buf+offset, TRUNCATED_STR, buf_len-offset+1);
  218. }
  219. /* Set 'n' to the end of the buffer, where we'll be writing \n\0.
  220. * Since we already subtracted 2 from buf_len, this is safe.*/
  221. n = buf_len;
  222. } else {
  223. n += r;
  224. }
  225. buf[n]='\n';
  226. buf[n+1]='\0';
  227. *msg_len_out = n+1;
  228. return end_of_prefix;
  229. }
  230. /** Helper: sends a message to the appropriate logfiles, at loglevel
  231. * <b>severity</b>. If provided, <b>funcname</b> is prepended to the
  232. * message. The actual message is derived as from tor_snprintf(format,ap).
  233. */
  234. static void
  235. logv(int severity, log_domain_mask_t domain, const char *funcname,
  236. const char *format, va_list ap)
  237. {
  238. char buf[10024];
  239. size_t msg_len = 0;
  240. int formatted = 0;
  241. logfile_t *lf;
  242. char *end_of_prefix=NULL;
  243. /* Call assert, not tor_assert, since tor_assert calls log on failure. */
  244. assert(format);
  245. /* check that severity is sane. Overrunning the masks array leads to
  246. * interesting and hard to diagnose effects */
  247. assert(severity >= LOG_ERR && severity <= LOG_DEBUG);
  248. LOCK_LOGS();
  249. lf = logfiles;
  250. while (lf) {
  251. if (! (lf->severities->masks[SEVERITY_MASK_IDX(severity)] & domain)) {
  252. lf = lf->next;
  253. continue;
  254. }
  255. if (! (lf->fd >= 0 || lf->is_syslog || lf->callback)) {
  256. lf = lf->next;
  257. continue;
  258. }
  259. if (lf->seems_dead) {
  260. lf = lf->next;
  261. continue;
  262. }
  263. if (!formatted) {
  264. end_of_prefix =
  265. format_msg(buf, sizeof(buf), domain, severity, funcname, format, ap,
  266. &msg_len);
  267. formatted = 1;
  268. }
  269. if (lf->is_syslog) {
  270. #ifdef HAVE_SYSLOG_H
  271. char *m = end_of_prefix;
  272. #ifdef MAXLINE
  273. /* Some syslog implementations have limits on the length of what you can
  274. * pass them, and some very old ones do not detect overflow so well.
  275. * Regrettably, they call their maximum line length MAXLINE. */
  276. #if MAXLINE < 64
  277. #warn "MAXLINE is a very low number; it might not be from syslog.h after all"
  278. #endif
  279. if (msg_len >= MAXLINE)
  280. m = tor_strndup(end_of_prefix, MAXLINE-1);
  281. #endif
  282. syslog(severity, "%s", m);
  283. #ifdef MAXLINE
  284. if (m != end_of_prefix) {
  285. tor_free(m);
  286. }
  287. #endif
  288. #endif
  289. lf = lf->next;
  290. continue;
  291. } else if (lf->callback) {
  292. lf->callback(severity, domain, end_of_prefix);
  293. lf = lf->next;
  294. continue;
  295. }
  296. if (write_all(lf->fd, buf, msg_len, 0) < 0) { /* error */
  297. /* don't log the error! mark this log entry to be blown away, and
  298. * continue. */
  299. lf->seems_dead = 1;
  300. }
  301. lf = lf->next;
  302. }
  303. UNLOCK_LOGS();
  304. }
  305. /** Output a message to the log. */
  306. void
  307. _log(int severity, log_domain_mask_t domain, const char *format, ...)
  308. {
  309. va_list ap;
  310. if (severity > _log_global_min_severity)
  311. return;
  312. va_start(ap,format);
  313. logv(severity, domain, NULL, format, ap);
  314. va_end(ap);
  315. }
  316. /** Output a message to the log, prefixed with a function name <b>fn</b>. */
  317. #ifdef __GNUC__
  318. void
  319. _log_fn(int severity, log_domain_mask_t domain, const char *fn,
  320. const char *format, ...)
  321. {
  322. va_list ap;
  323. if (severity > _log_global_min_severity)
  324. return;
  325. va_start(ap,format);
  326. logv(severity, domain, fn, format, ap);
  327. va_end(ap);
  328. }
  329. #else
  330. const char *_log_fn_function_name=NULL;
  331. void
  332. _log_fn(int severity, log_domain_mask_t domain, const char *format, ...)
  333. {
  334. va_list ap;
  335. if (severity > _log_global_min_severity)
  336. return;
  337. va_start(ap,format);
  338. logv(severity, domain, _log_fn_function_name, format, ap);
  339. va_end(ap);
  340. _log_fn_function_name = NULL;
  341. }
  342. void
  343. _log_debug(log_domain_mask_t domain, const char *format, ...)
  344. {
  345. va_list ap;
  346. /* For GCC we do this check in the macro. */
  347. if (PREDICT_LIKELY(LOG_DEBUG > _log_global_min_severity))
  348. return;
  349. va_start(ap,format);
  350. logv(LOG_DEBUG, domain, _log_fn_function_name, format, ap);
  351. va_end(ap);
  352. _log_fn_function_name = NULL;
  353. }
  354. void
  355. _log_info(log_domain_mask_t domain, const char *format, ...)
  356. {
  357. va_list ap;
  358. if (LOG_INFO > _log_global_min_severity)
  359. return;
  360. va_start(ap,format);
  361. logv(LOG_INFO, domain, _log_fn_function_name, format, ap);
  362. va_end(ap);
  363. _log_fn_function_name = NULL;
  364. }
  365. void
  366. _log_notice(log_domain_mask_t domain, const char *format, ...)
  367. {
  368. va_list ap;
  369. if (LOG_NOTICE > _log_global_min_severity)
  370. return;
  371. va_start(ap,format);
  372. logv(LOG_NOTICE, domain, _log_fn_function_name, format, ap);
  373. va_end(ap);
  374. _log_fn_function_name = NULL;
  375. }
  376. void
  377. _log_warn(log_domain_mask_t domain, const char *format, ...)
  378. {
  379. va_list ap;
  380. if (LOG_WARN > _log_global_min_severity)
  381. return;
  382. va_start(ap,format);
  383. logv(LOG_WARN, domain, _log_fn_function_name, format, ap);
  384. va_end(ap);
  385. _log_fn_function_name = NULL;
  386. }
  387. void
  388. _log_err(log_domain_mask_t domain, const char *format, ...)
  389. {
  390. va_list ap;
  391. if (LOG_ERR > _log_global_min_severity)
  392. return;
  393. va_start(ap,format);
  394. logv(LOG_ERR, domain, _log_fn_function_name, format, ap);
  395. va_end(ap);
  396. _log_fn_function_name = NULL;
  397. }
  398. #endif
  399. /** Free all storage held by <b>victim</b>. */
  400. static void
  401. log_free(logfile_t *victim)
  402. {
  403. tor_free(victim->severities);
  404. tor_free(victim->filename);
  405. tor_free(victim);
  406. }
  407. /** Close all open log files, and free other static memory. */
  408. void
  409. logs_free_all(void)
  410. {
  411. logfile_t *victim, *next;
  412. LOCK_LOGS();
  413. next = logfiles;
  414. logfiles = NULL;
  415. UNLOCK_LOGS();
  416. while (next) {
  417. victim = next;
  418. next = next->next;
  419. close_log(victim);
  420. log_free(victim);
  421. }
  422. tor_free(appname);
  423. tor_mutex_free(log_mutex);
  424. log_mutex = NULL;
  425. }
  426. /** Remove and free the log entry <b>victim</b> from the linked-list
  427. * logfiles (it is probably present, but it might not be due to thread
  428. * racing issues). After this function is called, the caller shouldn't
  429. * refer to <b>victim</b> anymore.
  430. *
  431. * Long-term, we need to do something about races in the log subsystem
  432. * in general. See bug 222 for more details.
  433. */
  434. static void
  435. delete_log(logfile_t *victim)
  436. {
  437. logfile_t *tmpl;
  438. if (victim == logfiles)
  439. logfiles = victim->next;
  440. else {
  441. for (tmpl = logfiles; tmpl && tmpl->next != victim; tmpl=tmpl->next) ;
  442. // tor_assert(tmpl);
  443. // tor_assert(tmpl->next == victim);
  444. if (!tmpl)
  445. return;
  446. tmpl->next = victim->next;
  447. }
  448. log_free(victim);
  449. }
  450. /** Helper: release system resources (but not memory) held by a single
  451. * logfile_t. */
  452. static void
  453. close_log(logfile_t *victim)
  454. {
  455. if (victim->needs_close && victim->fd >= 0) {
  456. close(victim->fd);
  457. victim->fd = -1;
  458. } else if (victim->is_syslog) {
  459. #ifdef HAVE_SYSLOG_H
  460. if (--syslog_count == 0) {
  461. /* There are no other syslogs; close the logging facility. */
  462. closelog();
  463. }
  464. #endif
  465. }
  466. }
  467. /** Adjust a log severity configuration in <b>severity_out</b> to contain
  468. * every domain between <b>loglevelMin</b> and <b>loglevelMax</b>, inclusive.
  469. */
  470. void
  471. set_log_severity_config(int loglevelMin, int loglevelMax,
  472. log_severity_list_t *severity_out)
  473. {
  474. int i;
  475. tor_assert(loglevelMin >= loglevelMax);
  476. tor_assert(loglevelMin >= LOG_ERR && loglevelMin <= LOG_DEBUG);
  477. tor_assert(loglevelMax >= LOG_ERR && loglevelMax <= LOG_DEBUG);
  478. memset(severity_out, 0, sizeof(log_severity_list_t));
  479. for (i = loglevelMin; i >= loglevelMax; --i) {
  480. severity_out->masks[SEVERITY_MASK_IDX(i)] = ~0u;
  481. }
  482. }
  483. /** Add a log handler named <b>name</b> to send all messages in <b>severity</b>
  484. * to <b>fd</b>. Copies <b>severity</b>. Helper: does no locking. */
  485. static void
  486. add_stream_log_impl(const log_severity_list_t *severity,
  487. const char *name, int fd)
  488. {
  489. logfile_t *lf;
  490. lf = tor_malloc_zero(sizeof(logfile_t));
  491. lf->fd = fd;
  492. lf->filename = tor_strdup(name);
  493. lf->severities = tor_memdup(severity, sizeof(log_severity_list_t));
  494. lf->next = logfiles;
  495. logfiles = lf;
  496. _log_global_min_severity = get_min_log_level();
  497. }
  498. /** Add a log handler named <b>name</b> to send all messages in <b>severity</b>
  499. * to <b>fd</b>. Steals a reference to <b>severity</b>; the caller must
  500. * not use it after calling this function. */
  501. void
  502. add_stream_log(const log_severity_list_t *severity,
  503. const char *name, int fd)
  504. {
  505. LOCK_LOGS();
  506. add_stream_log_impl(severity, name, fd);
  507. UNLOCK_LOGS();
  508. }
  509. /** Initialize the global logging facility */
  510. void
  511. init_logging(void)
  512. {
  513. if (!log_mutex)
  514. log_mutex = tor_mutex_new();
  515. }
  516. /** Add a log handler to receive messages during startup (before the real
  517. * logs are initialized).
  518. */
  519. void
  520. add_temp_log(int min_severity)
  521. {
  522. log_severity_list_t *s = tor_malloc_zero(sizeof(log_severity_list_t));
  523. set_log_severity_config(min_severity, LOG_ERR, s);
  524. LOCK_LOGS();
  525. add_stream_log_impl(s, "<temp>", fileno(stdout));
  526. tor_free(s);
  527. logfiles->is_temporary = 1;
  528. UNLOCK_LOGS();
  529. }
  530. /**
  531. * Add a log handler to send messages in <b>severity</b>
  532. * to the function <b>cb</b>.
  533. */
  534. int
  535. add_callback_log(const log_severity_list_t *severity, log_callback cb)
  536. {
  537. logfile_t *lf;
  538. lf = tor_malloc_zero(sizeof(logfile_t));
  539. lf->fd = -1;
  540. lf->severities = tor_memdup(severity, sizeof(log_severity_list_t));
  541. lf->filename = tor_strdup("<callback>");
  542. lf->callback = cb;
  543. lf->next = logfiles;
  544. LOCK_LOGS();
  545. logfiles = lf;
  546. _log_global_min_severity = get_min_log_level();
  547. UNLOCK_LOGS();
  548. return 0;
  549. }
  550. /** Adjust the configured severity of any logs whose callback function is
  551. * <b>cb</b>. */
  552. void
  553. change_callback_log_severity(int loglevelMin, int loglevelMax,
  554. log_callback cb)
  555. {
  556. logfile_t *lf;
  557. log_severity_list_t severities;
  558. set_log_severity_config(loglevelMin, loglevelMax, &severities);
  559. LOCK_LOGS();
  560. for (lf = logfiles; lf; lf = lf->next) {
  561. if (lf->callback == cb) {
  562. memcpy(lf->severities, &severities, sizeof(severities));
  563. }
  564. }
  565. _log_global_min_severity = get_min_log_level();
  566. UNLOCK_LOGS();
  567. }
  568. /** Close any log handlers added by add_temp_log() or marked by
  569. * mark_logs_temp(). */
  570. void
  571. close_temp_logs(void)
  572. {
  573. logfile_t *lf, **p;
  574. LOCK_LOGS();
  575. for (p = &logfiles; *p; ) {
  576. if ((*p)->is_temporary) {
  577. lf = *p;
  578. /* we use *p here to handle the edge case of the head of the list */
  579. *p = (*p)->next;
  580. close_log(lf);
  581. log_free(lf);
  582. } else {
  583. p = &((*p)->next);
  584. }
  585. }
  586. _log_global_min_severity = get_min_log_level();
  587. UNLOCK_LOGS();
  588. }
  589. /** Make all currently temporary logs (set to be closed by close_temp_logs)
  590. * live again, and close all non-temporary logs. */
  591. void
  592. rollback_log_changes(void)
  593. {
  594. logfile_t *lf;
  595. LOCK_LOGS();
  596. for (lf = logfiles; lf; lf = lf->next)
  597. lf->is_temporary = ! lf->is_temporary;
  598. UNLOCK_LOGS();
  599. close_temp_logs();
  600. }
  601. /** Configure all log handles to be closed by close_temp_logs(). */
  602. void
  603. mark_logs_temp(void)
  604. {
  605. logfile_t *lf;
  606. LOCK_LOGS();
  607. for (lf = logfiles; lf; lf = lf->next)
  608. lf->is_temporary = 1;
  609. UNLOCK_LOGS();
  610. }
  611. /**
  612. * Add a log handler to send messages to <b>filename</b>. If opening the
  613. * logfile fails, -1 is returned and errno is set appropriately (by open(2)).
  614. */
  615. int
  616. add_file_log(const log_severity_list_t *severity, const char *filename)
  617. {
  618. int fd;
  619. logfile_t *lf;
  620. fd = open(filename, O_WRONLY|O_CREAT|O_APPEND, 0644);
  621. if (fd<0)
  622. return -1;
  623. if (tor_fd_seekend(fd)<0)
  624. return -1;
  625. LOCK_LOGS();
  626. add_stream_log_impl(severity, filename, fd);
  627. logfiles->needs_close = 1;
  628. lf = logfiles;
  629. _log_global_min_severity = get_min_log_level();
  630. UNLOCK_LOGS();
  631. if (log_tor_version(lf, 0) < 0) {
  632. LOCK_LOGS();
  633. delete_log(lf);
  634. UNLOCK_LOGS();
  635. }
  636. return 0;
  637. }
  638. #ifdef HAVE_SYSLOG_H
  639. /**
  640. * Add a log handler to send messages to they system log facility.
  641. */
  642. int
  643. add_syslog_log(const log_severity_list_t *severity)
  644. {
  645. logfile_t *lf;
  646. if (syslog_count++ == 0)
  647. /* This is the first syslog. */
  648. openlog("Tor", LOG_PID | LOG_NDELAY, LOGFACILITY);
  649. lf = tor_malloc_zero(sizeof(logfile_t));
  650. lf->fd = -1;
  651. lf->severities = tor_memdup(severity, sizeof(log_severity_list_t));
  652. lf->filename = tor_strdup("<syslog>");
  653. lf->is_syslog = 1;
  654. LOCK_LOGS();
  655. lf->next = logfiles;
  656. logfiles = lf;
  657. _log_global_min_severity = get_min_log_level();
  658. UNLOCK_LOGS();
  659. return 0;
  660. }
  661. #endif
  662. /** If <b>level</b> is a valid log severity, return the corresponding
  663. * numeric value. Otherwise, return -1. */
  664. int
  665. parse_log_level(const char *level)
  666. {
  667. if (!strcasecmp(level, "err"))
  668. return LOG_ERR;
  669. if (!strcasecmp(level, "warn"))
  670. return LOG_WARN;
  671. if (!strcasecmp(level, "notice"))
  672. return LOG_NOTICE;
  673. if (!strcasecmp(level, "info"))
  674. return LOG_INFO;
  675. if (!strcasecmp(level, "debug"))
  676. return LOG_DEBUG;
  677. return -1;
  678. }
  679. /** Return the string equivalent of a given log level. */
  680. const char *
  681. log_level_to_string(int level)
  682. {
  683. return sev_to_string(level);
  684. }
  685. /** NULL-terminated array of names for log domains such that domain_list[dom]
  686. * is a description of <b>dom</b>. */
  687. static const char *domain_list[] = {
  688. "GENERAL", "CRYPTO", "NET", "CONFIG", "FS", "PROTOCOL", "MM",
  689. "HTTP", "APP", "CONTROL", "CIRC", "REND", "BUG", "DIR", "DIRSERV",
  690. "OR", "EDGE", "ACCT", "HIST", NULL
  691. };
  692. /** Return a bitmask for the log domain for which <b>domain</b> is the name,
  693. * or 0 if there is no such name. */
  694. static log_domain_mask_t
  695. parse_log_domain(const char *domain)
  696. {
  697. int i;
  698. for (i=0; domain_list[i]; ++i) {
  699. if (!strcasecmp(domain, domain_list[i]))
  700. return (1u<<i);
  701. }
  702. return 0;
  703. }
  704. #if 0
  705. /** Translate a bitmask of log domains to a string, or NULL if the bitmask
  706. * is undecodable. */
  707. static const char *
  708. domain_to_string(log_domain_mask_t domain)
  709. {
  710. int bit = tor_log2(domain);
  711. if ((bit == 0 && domain == 0) || bit >= N_LOGGING_DOMAINS)
  712. return NULL;
  713. return domain_list[bit];
  714. }
  715. #endif
  716. /** Parse a log severity pattern in *<b>cfg_ptr</b>. Advance cfg_ptr after
  717. * the end of the severityPattern. Set the value of <b>severity_out</b> to
  718. * the parsed pattern. Return 0 on success, -1 on failure.
  719. *
  720. * The syntax for a SeverityPattern is:
  721. * <pre>
  722. * SeverityPattern = *(DomainSeverity SP)* DomainSeverity
  723. * DomainSeverity = (DomainList SP)? SeverityRange
  724. * SeverityRange = MinSeverity ("-" MaxSeverity )?
  725. * DomainList = "[" (SP? DomainSpec SP? ",") SP? DomainSpec "]"
  726. * DomainSpec = "*" | Domain | "~" Domain
  727. * </pre>
  728. * A missing MaxSeverity defaults to ERR. Severities and domains are
  729. * case-insensitive. "~" indicates negation for a domain; negation happens
  730. * last inside a DomainList. Only one SeverityRange without a DomainList is
  731. * allowed per line.
  732. */
  733. int
  734. parse_log_severity_config(const char **cfg_ptr,
  735. log_severity_list_t *severity_out)
  736. {
  737. const char *cfg = *cfg_ptr;
  738. int got_anything = 0;
  739. int got_an_unqualified_range = 0;
  740. memset(severity_out, 0, sizeof(*severity_out));
  741. cfg = eat_whitespace(cfg);
  742. while (*cfg) {
  743. const char *dash, *space;
  744. char *sev_lo, *sev_hi;
  745. int low, high, i;
  746. log_domain_mask_t domains = ~0u;
  747. if (*cfg == '[') {
  748. int err = 0;
  749. char *domains_str;
  750. smartlist_t *domains_list;
  751. log_domain_mask_t neg_domains = 0;
  752. const char *closebracket = strchr(cfg, ']');
  753. if (!closebracket)
  754. return -1;
  755. domains = 0;
  756. domains_str = tor_strndup(cfg+1, closebracket-cfg-1);
  757. domains_list = smartlist_create();
  758. smartlist_split_string(domains_list, domains_str, ",", SPLIT_SKIP_SPACE,
  759. -1);
  760. tor_free(domains_str);
  761. SMARTLIST_FOREACH(domains_list, const char *, domain,
  762. {
  763. if (!strcmp(domain, "*")) {
  764. domains = ~0u;
  765. } else {
  766. int d;
  767. int negate=0;
  768. if (*domain == '~') {
  769. negate = 1;
  770. ++domain;
  771. }
  772. d = parse_log_domain(domain);
  773. if (!d) {
  774. log_warn(LD_CONFIG, "No such loggging domain as %s", domain);
  775. err = 1;
  776. } else {
  777. if (negate)
  778. neg_domains |= d;
  779. else
  780. domains |= d;
  781. }
  782. }
  783. });
  784. SMARTLIST_FOREACH(domains_list, char *, d, tor_free(d));
  785. smartlist_free(domains_list);
  786. if (err)
  787. return -1;
  788. domains &= ~neg_domains;
  789. cfg = eat_whitespace(closebracket+1);
  790. } else {
  791. ++got_an_unqualified_range;
  792. }
  793. if (!strcasecmpstart(cfg, "file") ||
  794. !strcasecmpstart(cfg, "stderr") ||
  795. !strcasecmpstart(cfg, "stdout") ||
  796. !strcasecmpstart(cfg, "syslog")) {
  797. goto done;
  798. }
  799. if (got_an_unqualified_range > 1)
  800. return -1;
  801. space = strchr(cfg, ' ');
  802. dash = strchr(cfg, '-');
  803. if (!space)
  804. space = strchr(cfg, '\0');
  805. if (dash && dash < space) {
  806. sev_lo = tor_strndup(cfg, dash-cfg);
  807. sev_hi = tor_strndup(dash+1, space-(dash+1));
  808. } else {
  809. sev_lo = tor_strndup(cfg, space-cfg);
  810. sev_hi = tor_strdup("ERR");
  811. }
  812. low = parse_log_level(sev_lo);
  813. high = parse_log_level(sev_hi);
  814. tor_free(sev_lo);
  815. tor_free(sev_hi);
  816. if (low == -1)
  817. return -1;
  818. if (high == -1)
  819. return -1;
  820. got_anything = 1;
  821. for (i=low; i >= high; --i)
  822. severity_out->masks[SEVERITY_MASK_IDX(i)] |= domains;
  823. cfg = eat_whitespace(space);
  824. }
  825. done:
  826. *cfg_ptr = cfg;
  827. return got_anything ? 0 : -1;
  828. }
  829. /** Return the least severe log level that any current log is interested in. */
  830. int
  831. get_min_log_level(void)
  832. {
  833. logfile_t *lf;
  834. int i;
  835. int min = LOG_ERR;
  836. for (lf = logfiles; lf; lf = lf->next) {
  837. for (i = LOG_DEBUG; i > min; --i)
  838. if (lf->severities->masks[SEVERITY_MASK_IDX(i)])
  839. min = i;
  840. }
  841. return min;
  842. }
  843. /** Switch all logs to output at most verbose level. */
  844. void
  845. switch_logs_debug(void)
  846. {
  847. logfile_t *lf;
  848. int i;
  849. LOCK_LOGS();
  850. for (lf = logfiles; lf; lf=lf->next) {
  851. for (i = LOG_DEBUG; i >= LOG_ERR; --i)
  852. lf->severities->masks[SEVERITY_MASK_IDX(i)] = ~0u;
  853. }
  854. _log_global_min_severity = get_min_log_level();
  855. UNLOCK_LOGS();
  856. }
  857. #ifdef HAVE_EVENT_SET_LOG_CALLBACK
  858. /** A string which, if it appears in a libevent log, should be ignored. */
  859. static const char *suppress_msg = NULL;
  860. /** Callback function passed to event_set_log() so we can intercept
  861. * log messages from libevent. */
  862. static void
  863. libevent_logging_callback(int severity, const char *msg)
  864. {
  865. char buf[1024];
  866. size_t n;
  867. if (suppress_msg && strstr(msg, suppress_msg))
  868. return;
  869. n = strlcpy(buf, msg, sizeof(buf));
  870. if (n && n < sizeof(buf) && buf[n-1] == '\n') {
  871. buf[n-1] = '\0';
  872. }
  873. switch (severity) {
  874. case _EVENT_LOG_DEBUG:
  875. log(LOG_DEBUG, LD_NET, "Message from libevent: %s", buf);
  876. break;
  877. case _EVENT_LOG_MSG:
  878. log(LOG_INFO, LD_NET, "Message from libevent: %s", buf);
  879. break;
  880. case _EVENT_LOG_WARN:
  881. log(LOG_WARN, LD_GENERAL, "Warning from libevent: %s", buf);
  882. break;
  883. case _EVENT_LOG_ERR:
  884. log(LOG_ERR, LD_GENERAL, "Error from libevent: %s", buf);
  885. break;
  886. default:
  887. log(LOG_WARN, LD_GENERAL, "Message [%d] from libevent: %s",
  888. severity, buf);
  889. break;
  890. }
  891. }
  892. /** Set hook to intercept log messages from libevent. */
  893. void
  894. configure_libevent_logging(void)
  895. {
  896. event_set_log_callback(libevent_logging_callback);
  897. }
  898. /** Ignore any libevent log message that contains <b>msg</b>. */
  899. void
  900. suppress_libevent_log_msg(const char *msg)
  901. {
  902. suppress_msg = msg;
  903. }
  904. #else
  905. void
  906. configure_libevent_logging(void)
  907. {
  908. }
  909. void
  910. suppress_libevent_log_msg(const char *msg)
  911. {
  912. (void)msg;
  913. }
  914. #endif
  915. #if 0
  916. static void
  917. dump_log_info(logfile_t *lf)
  918. {
  919. const char *tp;
  920. if (lf->filename) {
  921. printf("=== log into \"%s\" (%s-%s) (%stemporary)\n", lf->filename,
  922. sev_to_string(lf->min_loglevel),
  923. sev_to_string(lf->max_loglevel),
  924. lf->is_temporary?"":"not ");
  925. } else if (lf->is_syslog) {
  926. printf("=== syslog (%s-%s) (%stemporary)\n",
  927. sev_to_string(lf->min_loglevel),
  928. sev_to_string(lf->max_loglevel),
  929. lf->is_temporary?"":"not ");
  930. } else {
  931. printf("=== log (%s-%s) (%stemporary)\n",
  932. sev_to_string(lf->min_loglevel),
  933. sev_to_string(lf->max_loglevel),
  934. lf->is_temporary?"":"not ");
  935. }
  936. }
  937. void
  938. describe_logs(void)
  939. {
  940. logfile_t *lf;
  941. printf("==== BEGIN LOGS ====\n");
  942. for (lf = logfiles; lf; lf = lf->next)
  943. dump_log_info(lf);
  944. printf("==== END LOGS ====\n");
  945. }
  946. #endif