status.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /* Copyright (c) 2010-2013, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file status.c
  5. * \brief Keep status information and log the heartbeat messages.
  6. **/
  7. #include "or.h"
  8. #include "config.h"
  9. #include "status.h"
  10. #include "nodelist.h"
  11. #include "relay.h"
  12. #include "router.h"
  13. #include "circuitlist.h"
  14. #include "main.h"
  15. #include "hibernate.h"
  16. /** Return the total number of circuits. */
  17. static int
  18. count_circuits(void)
  19. {
  20. circuit_t *circ;
  21. int nr=0;
  22. for (circ = circuit_get_global_list_(); circ; circ = circ->next)
  23. nr++;
  24. return nr;
  25. }
  26. /** Take seconds <b>secs</b> and return a newly allocated human-readable
  27. * uptime string */
  28. static char *
  29. secs_to_uptime(long secs)
  30. {
  31. long int days = secs / 86400;
  32. int hours = (int)((secs - (days * 86400)) / 3600);
  33. int minutes = (int)((secs - (days * 86400) - (hours * 3600)) / 60);
  34. char *uptime_string = NULL;
  35. switch (days) {
  36. case 0:
  37. tor_asprintf(&uptime_string, "%d:%02d hours", hours, minutes);
  38. break;
  39. case 1:
  40. tor_asprintf(&uptime_string, "%ld day %d:%02d hours",
  41. days, hours, minutes);
  42. break;
  43. default:
  44. tor_asprintf(&uptime_string, "%ld days %d:%02d hours",
  45. days, hours, minutes);
  46. break;
  47. }
  48. return uptime_string;
  49. }
  50. /** Take <b>bytes</b> and returns a newly allocated human-readable usage
  51. * string. */
  52. static char *
  53. bytes_to_usage(uint64_t bytes)
  54. {
  55. char *bw_string = NULL;
  56. if (bytes < (1<<20)) { /* Less than a megabyte. */
  57. tor_asprintf(&bw_string, U64_FORMAT" kB", U64_PRINTF_ARG(bytes>>10));
  58. } else if (bytes < (1<<30)) { /* Megabytes. Let's add some precision. */
  59. double bw = U64_TO_DBL(bytes);
  60. tor_asprintf(&bw_string, "%.2f MB", bw/(1<<20));
  61. } else { /* Gigabytes. */
  62. double bw = U64_TO_DBL(bytes);
  63. tor_asprintf(&bw_string, "%.2f GB", bw/(1<<30));
  64. }
  65. return bw_string;
  66. }
  67. /** Log a "heartbeat" message describing Tor's status and history so that the
  68. * user can know that there is indeed a running Tor. Return 0 on success and
  69. * -1 on failure. */
  70. int
  71. log_heartbeat(time_t now)
  72. {
  73. char *bw_sent = NULL;
  74. char *bw_rcvd = NULL;
  75. char *uptime = NULL;
  76. const routerinfo_t *me;
  77. double r = tls_get_write_overhead_ratio();
  78. const int hibernating = we_are_hibernating();
  79. const or_options_t *options = get_options();
  80. (void)now;
  81. if (public_server_mode(options) && !hibernating) {
  82. /* Let's check if we are in the current cached consensus. */
  83. if (!(me = router_get_my_routerinfo()))
  84. return -1; /* Something stinks, we won't even attempt this. */
  85. else
  86. if (!node_get_by_id(me->cache_info.identity_digest))
  87. log_fn(LOG_NOTICE, LD_HEARTBEAT, "Heartbeat: It seems like we are not "
  88. "in the cached consensus.");
  89. }
  90. uptime = secs_to_uptime(get_uptime());
  91. bw_rcvd = bytes_to_usage(get_bytes_read());
  92. bw_sent = bytes_to_usage(get_bytes_written());
  93. log_fn(LOG_NOTICE, LD_HEARTBEAT, "Heartbeat: Tor's uptime is %s, with %d "
  94. "circuits open. I've sent %s and received %s.%s",
  95. uptime, count_circuits(),bw_sent,bw_rcvd,
  96. hibernating?" We are currently hibernating.":"");
  97. if (stats_n_data_cells_packaged && !hibernating)
  98. log_notice(LD_HEARTBEAT, "Average packaged cell fullness: %2.3f%%",
  99. 100*(U64_TO_DBL(stats_n_data_bytes_packaged) /
  100. U64_TO_DBL(stats_n_data_cells_packaged*RELAY_PAYLOAD_SIZE)) );
  101. if (r > 1.0) {
  102. double overhead = ( r - 1.0 ) * 100.0;
  103. log_notice(LD_HEARTBEAT, "TLS write overhead: %.f%%", overhead);
  104. }
  105. if (public_server_mode(options))
  106. rep_hist_log_circuit_handshake_stats(now);
  107. tor_free(uptime);
  108. tor_free(bw_sent);
  109. tor_free(bw_rcvd);
  110. return 0;
  111. }