Tor  0.4.7.0-alpha-dev
shutdown.c
Go to the documentation of this file.
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-2021, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
6 
7 /**
8  * @file shutdown.c
9  * @brief Code to free global resources used by Tor.
10  *
11  * In the future, this should all be handled by the subsystem manager. */
12 
13 #include "core/or/or.h"
14 
15 #include "app/config/config.h"
16 #include "app/config/statefile.h"
17 #include "app/main/main.h"
18 #include "app/main/shutdown.h"
19 #include "app/main/subsysmgr.h"
22 #include "core/or/channeltls.h"
23 #include "core/or/circuitlist.h"
25 #include "core/or/circuitpadding.h"
27 #include "core/or/dos.h"
28 #include "core/or/scheduler.h"
30 #include "feature/client/bridges.h"
41 #include "feature/hs/hs_common.h"
48 #include "feature/stats/bwhist.h"
50 #include "feature/stats/rephist.h"
52 #include "lib/geoip/geoip.h"
53 
54 void evdns_shutdown(int);
55 
56 /** Do whatever cleanup is necessary before shutting Tor down. */
57 void
59 {
60  const or_options_t *options = get_options();
61  if (options->command == CMD_RUN_TOR) {
62  time_t now = time(NULL);
63  /* Remove our pid file. We don't care if there was an error when we
64  * unlink, nothing we could do about it anyways. */
65  tor_remove_file(options->PidFile);
66  /* Remove control port file */
68  /* Remove cookie authentication file */
69  {
70  char *cookie_fname = get_controller_cookie_file_name();
71  tor_remove_file(cookie_fname);
72  tor_free(cookie_fname);
73  }
74  /* Remove Extended ORPort cookie authentication file */
75  {
76  char *cookie_fname = get_ext_or_auth_cookie_file_name();
77  if (cookie_fname)
78  tor_remove_file(cookie_fname);
79  tor_free(cookie_fname);
80  }
81  if (accounting_is_enabled(options))
83  or_state_mark_dirty(get_or_state(), 0); /* force an immediate save. */
84  or_state_save(now);
85  if (authdir_mode(options)) {
87  }
90  }
91 
93 
94  tor_free_all(0); /* We could move tor_free_all back into the ifdef below
95  later, if it makes shutdown unacceptably slow. But for
96  now, leave it here: it's helped us catch bugs in the
97  past. */
98 }
99 
100 /** Free all memory that we might have allocated somewhere.
101  * If <b>postfork</b>, we are a worker process and we want to free
102  * only the parts of memory that we won't touch. If !<b>postfork</b>,
103  * Tor is shutting down and we should free everything.
104  *
105  * Helps us find the real leaks with sanitizers and the like. Also valgrind
106  * should then report 0 reachable in its leak report (in an ideal world --
107  * in practice libevent, SSL, libc etc never quite free everything). */
108 void
109 tor_free_all(int postfork)
110 {
111  if (!postfork) {
112  evdns_shutdown(1);
113  }
114  geoip_free_all();
119  dirserv_free_all();
121  bwhist_free_all();
125  pt_free_all();
137  hs_free_all();
138  dos_free_all();
142 
143  if (!postfork) {
144  config_free_all();
146  or_state_free_all();
147  }
148  if (!postfork) {
149 #ifndef _WIN32
150  tor_getpwnam(NULL);
151 #endif
152  }
153  /* stuff in main.c */
154 
156 
157  if (!postfork) {
159  }
160 
162 
163  /* Stuff in util.c and address.c*/
164  if (!postfork) {
165  esc_router_info(NULL);
166  }
167 }
void addressmap_free_all(void)
Definition: addressmap.c:328
Header for addressmap.c.
int authdir_mode(const or_options_t *options)
Definition: authmode.c:25
int authdir_mode_tests_reachability(const or_options_t *options)
Definition: authmode.c:68
Header file for directory authority mode.
void bridges_free_all(void)
Definition: bridges.c:1036
Header file for circuitbuild.c.
Header for feature/stats/bwhist.c.
void channel_free_all(void)
Definition: channel.c:2246
void channel_tls_free_all(void)
Definition: channeltls.c:297
Header file for channeltls.c.
void circuit_free_all(void)
Definition: circuitlist.c:1302
Header file for circuitlist.c.
void circuitmux_ewma_free_all(void)
Header file for circuitmux_ewma.c.
void circpad_free_all(void)
void circpad_machines_free(void)
Header file for circuitpadding.c.
Header for compat_libevent.c.
const or_options_t * get_options(void)
Definition: config.c:919
void config_free_all(void)
Definition: config.c:1039
Header file for config.c.
void connection_free_all(void)
Definition: connection.c:5818
Header file for connection.c.
void connection_edge_free_all(void)
Header file for connection_edge.c.
void consdiffmgr_free_all(void)
Definition: consdiffmgr.c:1267
Header for consdiffmgr.c.
void control_free_all(void)
Definition: control.c:620
Header file for control.c.
char * get_controller_cookie_file_name(void)
Definition: control_auth.c:48
Header file for control_auth.c.
Header file for dirserv.c.
void entry_guards_free_all(void)
Definition: entrynodes.c:3936
Header file for circuitbuild.c.
char * get_ext_or_auth_cookie_file_name(void)
Definition: ext_orport.c:127
Header for ext_orport.c.
void geoip_free_all(void)
Definition: geoip.c:510
Header file for geoip.c.
Header file for geoip_stats.c.
void geoip_stats_free_all(void)
Definition: geoip_stats.c:1403
int accounting_record_bandwidth_usage(time_t now, or_state_t *state)
Definition: hibernate.c:705
int accounting_is_enabled(const or_options_t *options)
Definition: hibernate.c:305
void accounting_free_all(void)
Definition: hibernate.c:1254
Header file for hibernate.c.
void hs_free_all(void)
Definition: hs_common.c:1710
Header file containing common data for the whole HS subsystem.
void release_lockfile(void)
Definition: main.c:710
void tor_remove_file(const char *filename)
Definition: main.c:723
Header file for main.c.
void tor_mainloop_disconnect_pubsub(void)
Header for mainloop_pubsub.c.
#define tor_free(p)
Definition: malloc.h:52
void microdesc_free_all(void)
Definition: microdesc.c:928
Header file for microdesc.c.
void networkstatus_free_all(void)
Header file for networkstatus.c.
void nodelist_free_all(void)
Definition: nodelist.c:923
Header file for nodelist.c.
Master header file for Tor-specific functionality.
void relay_config_free_all(void)
Definition: relay_config.c:84
Header for feature/relay/relay_config.c.
void rep_hist_free_all(void)
Definition: rephist.c:2610
int rep_hist_record_mtbf_data(time_t now, int missing_means_down)
Definition: rephist.c:962
Header file for rephist.c.
void routerlist_free_all(void)
Definition: routerlist.c:1515
const char * esc_router_info(const routerinfo_t *router)
Definition: routerlist.c:3243
Header file for routerlist.c.
void routerparse_free_all(void)
Definition: routerparse.c:1260
Header file for routerparse.c.
void scheduler_free_all(void)
Definition: scheduler.c:484
Header file for scheduler*.c.
void sr_save_and_cleanup(void)
This file contains ABI/API of the shared random protocol defined in proposal #250....
void tor_free_all(int postfork)
Definition: shutdown.c:109
void tor_cleanup(void)
Definition: shutdown.c:58
Header file for shutdown.c.
or_state_t * get_or_state(void)
Definition: statefile.c:220
void or_state_mark_dirty(or_state_t *state, time_t when)
Definition: statefile.c:784
int or_state_save(time_t now)
Definition: statefile.c:562
Header for statefile.c.
char * ControlPortWriteToFile
tor_cmdline_mode_t command
Definition: or_options_st.h:68
void subsystems_shutdown(void)
Definition: subsysmgr.c:204
Header for subsysmgr.c.
void timers_shutdown(void)
Definition: timers.c:234
@ CMD_RUN_TOR
void pt_free_all(void)
Definition: transports.c:1824
Headers for transports.c.
const struct passwd * tor_getpwnam(const char *username)
Definition: userdb.c:70