Monero
util.h
Go to the documentation of this file.
1 // Copyright (c) 2014-2022, The Monero Project
2 //
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without modification, are
6 // permitted provided that the following conditions are met:
7 //
8 // 1. Redistributions of source code must retain the above copyright notice, this list of
9 // conditions and the following disclaimer.
10 //
11 // 2. Redistributions in binary form must reproduce the above copyright notice, this list
12 // of conditions and the following disclaimer in the documentation and/or other
13 // materials provided with the distribution.
14 //
15 // 3. Neither the name of the copyright holder nor the names of its contributors may be
16 // used to endorse or promote products derived from this software without specific
17 // prior written permission.
18 //
19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
20 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22 // THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27 // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 //
29 // Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
30 
31 #pragma once
32 
33 #include <boost/thread/locks.hpp>
34 #include <boost/thread/mutex.hpp>
35 #include <boost/optional.hpp>
36 #include <system_error>
37 #include <csignal>
38 #include <cstdio>
39 #include <functional>
40 #include <memory>
41 #include <string>
42 
43 #ifdef _WIN32
44 #include "windows.h"
45 #include "misc_log_ex.h"
46 #endif
47 
48 #include "crypto/hash.h"
49 #include "cryptonote_config.h"
50 
56 namespace tools
57 {
59  struct close_file
60  {
61  void operator()(std::FILE* handle) const noexcept
62  {
63  if (handle)
64  {
65  std::fclose(handle);
66  }
67  }
68  };
69 
71  class private_file {
72  std::unique_ptr<std::FILE, close_file> m_handle;
74 
75  private_file(std::FILE* handle, std::string&& filename) noexcept;
76  public:
77 
79  private_file() noexcept;
80 
83  static private_file create(std::string filename);
84 
86  private_file& operator=(private_file&&) = default;
87 
89  ~private_file() noexcept;
90 
91  std::FILE* handle() const noexcept { return m_handle.get(); }
92  const std::string& filename() const noexcept { return m_filename; }
93  };
94 
96  {
97  public:
98  file_locker(const std::string &filename);
99  ~file_locker();
100  bool locked() const;
101  private:
102 #ifdef WIN32
103  HANDLE m_fd;
104 #else
105  int m_fd;
106 #endif
107  };
108 
120 
121 #ifdef WIN32
122 
130  std::string get_special_folder_path(int nfolder, bool iscreate);
131 #endif
132 
140 
149  std::error_code replace_file(const std::string& old_name, const std::string& new_name);
150 
151  bool sanitize_locale();
152 
153  bool disable_core_dumps();
154 
155  bool on_startup();
156 
160  {
161  public:
163  template<typename T>
164  static bool install(T t)
165  {
166 #if defined(WIN32)
167  bool r = TRUE == ::SetConsoleCtrlHandler(&win_handler, TRUE);
168  if (r)
169  {
170  m_handler = t;
171  }
172  return r;
173 #else
174  static struct sigaction sa;
175  memset(&sa, 0, sizeof(struct sigaction));
176  sa.sa_handler = posix_handler;
177  sa.sa_flags = 0;
178  /* Only blocks SIGINT, SIGTERM and SIGPIPE */
179  sigaction(SIGINT, &sa, NULL);
180  signal(SIGTERM, posix_handler);
181  signal(SIGPIPE, SIG_IGN);
182  m_handler = t;
183  return true;
184 #endif
185  }
186 
187  private:
188 #if defined(WIN32)
189 
190  static BOOL WINAPI win_handler(DWORD type)
191  {
192  if (CTRL_C_EVENT == type || CTRL_BREAK_EVENT == type)
193  {
195  }
196  else
197  {
198  MGINFO_RED("Got control signal " << type << ". Exiting without saving...");
199  return FALSE;
200  }
201  return TRUE;
202  }
203 #else
204 
205  static void posix_handler(int type)
206  {
208  }
209 #endif
210 
212  static void handle_signal(int type)
213  {
214  static boost::mutex m_mutex;
215  boost::unique_lock<boost::mutex> lock(m_mutex);
216  m_handler(type);
217  }
218 
220  static std::function<void(int)> m_handler;
221  };
222 
223  void set_strict_default_file_permissions(bool strict);
224 
225  ssize_t get_lockable_memory();
226 
227  void set_max_concurrency(unsigned n);
228  unsigned get_max_concurrency();
229 
230  bool is_local_address(const std::string &address);
232  int vercmp(const char *v0, const char *v1); // returns < 0, 0, > 0, similar to strcmp, but more human friendly than lexical - does not attempt to validate
233 
243  bool sha256sum(const uint8_t *data, size_t len, crypto::hash &hash);
244 
255  bool sha256sum(const std::string &filename, crypto::hash &hash);
256 
257  boost::optional<bool> is_hdd(const char *path);
258 
259  boost::optional<std::pair<uint32_t, uint32_t>> parse_subaddress_lookahead(const std::string& str);
260 
262 #ifdef _WIN32
263  std::string input_line_win();
264 #endif
265 
266  void closefrom(int fd);
267 
269 
271 
273 
274  void clear_screen();
275 
276  std::vector<std::pair<std::string, size_t>> split_string_by_width(const std::string &s, size_t columns);
277 
279 }
std::FILE * handle() const noexcept
Definition: util.h:91
const uint32_t T[512]
Definition: groestl_tables.h:36
std::vector< std::pair< std::string, size_t > > split_string_by_width(const std::string &s, size_t columns)
Definition: util.cpp:1379
int m_fd
Definition: util.h:105
Definition: util.h:95
::std::string string
Definition: gtest-port.h:1097
bool is_local_address(const std::string &address)
Definition: util.cpp:883
std::string get_os_version_string()
Returns the OS version string.
Definition: util.cpp:566
std::string get_human_readable_timespan(uint64_t seconds)
Definition: util.cpp:1069
t
Definition: console.py:33
void set_max_concurrency(unsigned n)
Definition: util.cpp:857
std::unique_ptr< std::FILE, close_file > m_handle
Definition: util.h:72
uint64_t num_blocks(const std::vector< test_event_entry > &events)
Definition: chaingen.cpp:1220
std::string data
Definition: base58.cpp:37
bool disable_core_dumps()
Definition: util.cpp:748
std::string glob_to_regex(const std::string &val)
Definition: util.cpp:992
int type
Definition: superscalar.cpp:50
const char * s
Definition: minissdp.c:596
Definition: enums.h:67
file_locker(const std::string &filename)
Definition: util.cpp:238
#define v1(p)
Definition: aesb.c:117
unsigned char uint8_t
Definition: stdint.h:124
unsigned get_max_concurrency()
Definition: util.cpp:868
std::string get_default_data_dir()
Returns the default data directory.
Definition: util.cpp:600
bool on_startup()
Definition: util.cpp:778
bool locked() const
Definition: util.cpp:296
Defines a signal handler for win32 and *nix.
Definition: util.h:159
void clear_screen()
Definition: util.cpp:1137
static std::function< void(int)> m_handler
where the installed handler is stored
Definition: util.h:220
default
Definition: pymoduletest.py:17
bool is_privacy_preserving_network(const std::string &address)
Definition: util.cpp:874
private_file() noexcept
handle() == nullptr && filename.empty().
Definition: util.cpp:120
static void handle_signal(int type)
calles m_handler
Definition: util.h:212
Various Tools.
Definition: apply_permutation.h:39
#define ts
Definition: skein.c:522
unsigned __int64 uint64_t
Definition: stdint.h:136
#define fd(x)
Definition: aesb.c:127
std::error_code replace_file(const std::string &old_name, const std::string &new_name)
std::rename wrapper for nix and something strange for windows.
Definition: util.cpp:648
bool sha256sum(const uint8_t *data, size_t len, crypto::hash &hash)
Creates a SHA-256 digest of a data buffer.
Definition: util.cpp:937
static void posix_handler(int type)
handler for NIX
Definition: util.h:205
~file_locker()
Definition: util.cpp:285
static bool install(T t)
installs a signal handler
Definition: util.h:164
void operator()(std::FILE *handle) const noexcept
Definition: util.h:61
r
Definition: testupnpigd.py:61
const char *const str
Definition: portlistingparse.c:23
boost::optional< std::pair< uint32_t, uint32_t > > parse_subaddress_lookahead(const std::string &str)
Definition: util.cpp:974
uint64_t cumulative_block_sync_weight(cryptonote::network_type nettype, uint64_t start_block, uint64_t num_blocks)
Definition: util.cpp:1297
network_type
Definition: cryptonote_config.h:295
uint32_t address
Definition: getifaddr.c:269
#define HANDLE
Definition: mdb.c:459
void set_strict_default_file_permissions(bool strict)
Definition: util.cpp:803
std::string m_filename
Definition: util.h:73
#define v0(p)
Definition: aesb.c:116
bool sanitize_locale()
Definition: util.cpp:690
bool create_directories_if_necessary(const std::string &path)
creates directories for a path
Definition: util.cpp:625
static private_file create(std::string filename)
Definition: util.cpp:125
POD_CLASS hash
Definition: hash.h:48
std::string get_human_readable_bytes(uint64_t bytes)
Definition: util.cpp:1103
void closefrom(int fd)
Definition: util.cpp:1038
A file restricted to process owner AND process. Deletes file on destruction.
Definition: util.h:71
Functional class for closing C file handles.
Definition: util.h:59
#define const
Definition: ipfrdr.c:80
ssize_t get_lockable_memory()
Definition: util.cpp:763
std::string get_human_readable_timestamp(uint64_t ts)
Definition: util.cpp:1057
const std::string & filename() const noexcept
Definition: util.h:92
int vercmp(const char *v0, const char *v1)
Definition: util.cpp:919
boost::optional< bool > is_hdd(const char *file_path)
Definition: util.cpp:813