Monero
Loading...
Searching...
No Matches
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
56namespace tools
57{
60 {
61 void operator()(std::FILE* handle) const noexcept
62 {
63 if (handle)
64 {
65 std::fclose(handle);
66 }
67 }
68 };
69
72 std::unique_ptr<std::FILE, close_file> m_handle;
73 std::string m_filename;
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);
100 bool locked() const;
101 private:
102#ifdef WIN32
103 HANDLE m_fd;
104#else
105 int m_fd;
106#endif
107 };
108
119 std::string get_default_data_dir();
120
121#ifdef WIN32
130 std::string get_special_folder_path(int nfolder, bool iscreate);
131#endif
132
139 std::string get_os_version_string();
140
146 bool create_directories_if_necessary(const std::string& path);
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)
190 static BOOL WINAPI win_handler(DWORD type)
191 {
192 if (CTRL_C_EVENT == type || CTRL_BREAK_EVENT == type)
193 {
194 handle_signal(type);
195 }
196 else
197 {
198 MGINFO_RED("Got control signal " << type << ". Exiting without saving...");
199 return FALSE;
200 }
201 return TRUE;
202 }
203#else
205 static void posix_handler(int type)
206 {
207 handle_signal(type);
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);
231 bool is_privacy_preserving_network(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
261 std::string glob_to_regex(const std::string &val);
262#ifdef _WIN32
263 std::string input_line_win();
264#endif
265
266 void closefrom(int fd);
267
269
270 std::string get_human_readable_timespan(uint64_t seconds);
271
272 std::string get_human_readable_bytes(uint64_t bytes);
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}
#define s(x, c)
Definition: aesb.c:47
#define v0(p)
Definition: aesb.c:116
#define fd(x)
Definition: aesb.c:127
#define v1(p)
Definition: aesb.c:117
uint64_t num_blocks(const std::vector< test_event_entry > &events)
Definition: chaingen.cpp:1220
Definition: util.h:96
int m_fd
Definition: util.h:105
~file_locker()
Definition: util.cpp:285
bool locked() const
Definition: util.cpp:296
A file restricted to process owner AND process. Deletes file on destruction.
Definition: util.h:71
const std::string & filename() const noexcept
Definition: util.h:92
std::unique_ptr< std::FILE, close_file > m_handle
Definition: util.h:72
static private_file create(std::string filename)
Definition: util.cpp:125
std::string m_filename
Definition: util.h:73
private_file() noexcept
handle() == nullptr && filename.empty().
Definition: util.cpp:120
std::FILE * handle() const noexcept
Definition: util.h:91
Defines a signal handler for win32 and *nix.
Definition: util.h:160
static void handle_signal(int type)
calles m_handler
Definition: util.h:212
static bool install(T t)
installs a signal handler
Definition: util.h:164
static std::function< void(int)> m_handler
where the installed handler is stored
Definition: util.h:220
static void posix_handler(int type)
handler for NIX
Definition: util.h:205
#define HANDLE
Definition: mdb.c:459
#define const
Definition: ipfrdr.c:80
uint32_t address
Definition: getifaddr.c:269
POD_CLASS hash
Definition: hash.h:48
network_type
Definition: cryptonote_config.h:289
Definition: enums.h:68
Various Tools.
Definition: apply_permutation.h:40
std::string get_human_readable_timespan(uint64_t seconds)
Definition: util.cpp:1074
std::string get_human_readable_timestamp(uint64_t ts)
Definition: util.cpp:1062
void closefrom(int fd)
Definition: util.cpp:1043
bool is_privacy_preserving_network(const std::string &address)
Definition: util.cpp:874
int vercmp(const char *v0, const char *v1)
Definition: util.cpp:924
bool disable_core_dumps()
Definition: util.cpp:748
void set_max_concurrency(unsigned n)
Definition: util.cpp:857
std::vector< std::pair< std::string, size_t > > split_string_by_width(const std::string &s, size_t columns)
Definition: util.cpp:1384
boost::optional< bool > is_hdd(const char *file_path)
Definition: util.cpp:813
void set_strict_default_file_permissions(bool strict)
Definition: util.cpp:803
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 sanitize_locale()
Definition: util.cpp:690
std::string glob_to_regex(const std::string &val)
Definition: util.cpp:997
void clear_screen()
Definition: util.cpp:1142
uint64_t cumulative_block_sync_weight(cryptonote::network_type nettype, uint64_t start_block, uint64_t num_blocks)
Definition: util.cpp:1302
boost::optional< std::pair< uint32_t, uint32_t > > parse_subaddress_lookahead(const std::string &str)
Definition: util.cpp:979
bool create_directories_if_necessary(const std::string &path)
creates directories for a path
Definition: util.cpp:625
bool is_local_address(const std::string &address)
Definition: util.cpp:883
ssize_t get_lockable_memory()
Definition: util.cpp:763
bool on_startup()
Definition: util.cpp:778
std::string get_human_readable_bytes(uint64_t bytes)
Definition: util.cpp:1108
unsigned get_max_concurrency()
Definition: util.cpp:868
bool sha256sum(const uint8_t *data, size_t len, crypto::hash &hash)
Creates a SHA-256 digest of a data buffer.
Definition: util.cpp:942
std::string get_os_version_string()
Returns the OS version string.
Definition: util.cpp:566
std::string get_default_data_dir()
Returns the default data directory.
Definition: util.cpp:600
const char *const str
Definition: portlistingparse.c:23
#define ts
Definition: skein.c:522
unsigned char uint8_t
Definition: stdint.h:124
unsigned __int64 uint64_t
Definition: stdint.h:136
Functional class for closing C file handles.
Definition: util.h:60
void operator()(std::FILE *handle) const noexcept
Definition: util.h:61
std::string data
Definition: base58.cpp:37
#define T(x)