Tor 0.4.9.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"
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"
28#include "core/or/dos.h"
29#include "core/or/scheduler.h"
53#include "lib/geoip/geoip.h"
54
55void evdns_shutdown(int);
56
57/** Do whatever cleanup is necessary before shutting Tor down. */
58void
60{
61 const or_options_t *options = get_options();
62 if (options->command == CMD_RUN_TOR) {
63 time_t now = time(NULL);
64 /* Remove our pid file. We don't care if there was an error when we
65 * unlink, nothing we could do about it anyways. */
66 tor_remove_file(options->PidFile);
67 /* Remove control port file */
69 /* Remove cookie authentication file */
70 {
71 char *cookie_fname = get_controller_cookie_file_name();
72 tor_remove_file(cookie_fname);
73 tor_free(cookie_fname);
74 }
75 /* Remove Extended ORPort cookie authentication file */
76 {
77 char *cookie_fname = get_ext_or_auth_cookie_file_name();
78 if (cookie_fname)
79 tor_remove_file(cookie_fname);
80 tor_free(cookie_fname);
81 }
82 if (accounting_is_enabled(options))
84 or_state_mark_dirty(get_or_state(), 0); /* force an immediate save. */
85 or_state_save(now);
86 if (authdir_mode(options)) {
88 }
91 }
92
94
95 tor_free_all(0); /* We could move tor_free_all back into the ifdef below
96 later, if it makes shutdown unacceptably slow. But for
97 now, leave it here: it's helped us catch bugs in the
98 past. */
99}
100
101/** Free all memory that we might have allocated somewhere.
102 * If <b>postfork</b>, we are a worker process and we want to free
103 * only the parts of memory that we won't touch. If !<b>postfork</b>,
104 * Tor is shutting down and we should free everything.
105 *
106 * Helps us find the real leaks with sanitizers and the like. Also valgrind
107 * should then report 0 reachable in its leak report (in an ideal world --
108 * in practice libevent, SSL, libc etc never quite free everything). */
109void
110tor_free_all(int postfork)
111{
112 if (!postfork) {
113 evdns_shutdown(1);
114 }
120 dirserv_free_all();
122 bwhist_free_all();
128 pt_free_all();
140 hs_free_all();
141 dos_free_all();
145
146 if (!postfork) {
149 or_state_free_all();
150 }
151 if (!postfork) {
152#ifndef _WIN32
153 tor_getpwnam(NULL);
154#endif
155 }
156 /* stuff in main.c */
157
159
160 if (!postfork) {
162 }
163
165
166 /* Stuff in util.c and address.c*/
167 if (!postfork) {
168 esc_router_info(NULL);
169 }
170}
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:1083
Header file for circuitbuild.c.
Header for feature/stats/bwhist.c.
void channel_free_all(void)
Definition: channel.c:2253
void channel_tls_free_all(void)
Definition: channeltls.c:300
Header file for channeltls.c.
void circuit_free_all(void)
Definition: circuitlist.c:1337
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:944
void config_free_all(void)
Definition: config.c:1065
Header file for config.c.
void conflux_notify_shutdown(void)
void conflux_pool_free_all(void)
Header file for conflux_pool.c.
void connection_free_all(void)
Definition: connection.c:5920
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:4324
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:704
void tor_remove_file(const char *filename)
Definition: main.c:717
Header file for main.c.
void tor_mainloop_disconnect_pubsub(void)
Header for mainloop_pubsub.c.
#define tor_free(p)
Definition: malloc.h:56
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:86
Header for feature/relay/relay_config.c.
void rep_hist_free_all(void)
Definition: rephist.c:2986
int rep_hist_record_mtbf_data(time_t now, int missing_means_down)
Definition: rephist.c:1018
Header file for rephist.c.
void routerlist_free_all(void)
Definition: routerlist.c:1518
const char * esc_router_info(const routerinfo_t *router)
Definition: routerlist.c:3285
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:110
void tor_cleanup(void)
Definition: shutdown.c:59
Header file for shutdown.c.
void or_state_mark_dirty(or_state_t *state, time_t when)
Definition: statefile.c:784
or_state_t * get_or_state(void)
Definition: statefile.c:220
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:1842
Headers for transports.c.
const struct passwd * tor_getpwnam(const char *username)
Definition: userdb.c:70