forked from SecorD0/Massa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
multi_tool.sh
338 lines (317 loc) · 12.5 KB
/
multi_tool.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
#!/bin/bash
# Default variables
function="install"
source="false"
# Options
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/colors.sh) --
option_value(){ echo "$1" | sed -e 's%^--[^=]*=%%g; s%^-[^=]*=%%g'; }
while test $# -gt 0; do
case "$1" in
-h|--help)
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/logo.sh)
echo
echo -e "${C_LGn}Functionality${RES}: the script performs many actions related to a Massa node"
echo
echo -e "${C_LGn}Usage${RES}: script ${C_LGn}[OPTIONS]${RES}"
echo
echo -e "${C_LGn}Options${RES}:"
echo -e " -h, --help show the help page"
echo -e " -op, --open-ports open required ports"
echo -e " -s, --source install the node using a source code"
echo -e " -rb replace bootstraps"
echo -e " -un, --uninstall unistall the node"
echo
echo -e "You can use either \"=\" or \" \" as an option and value ${C_LGn}delimiter${RES}"
echo
echo -e "${C_LGn}Useful URLs${RES}:"
echo -e "https://github.com/SecorD0/Massa/blob/main/multi_tool.sh - script URL"
echo -e "https://t.me/OnePackage — noderun and tech community"
echo
return 0
;;
-op|--open-ports)
function="open_ports"
shift
;;
-s|--source)
function="install_source"
shift
;;
-rb)
function="replace_bootstraps"
shift
;;
-un|--uninstall)
function="uninstall"
shift
;;
*|--)
break
;;
esac
done
# Functions
printf_n(){ printf "$1\n" "${@:2}"; }
open_ports() {
sudo systemctl stop massad
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/miscellaneous/ports_opening.sh) 31244 31245
sudo tee <<EOF >/dev/null $HOME/massa/massa-node/config/config.toml
[network]
routable_ip = "`wget -qO- eth0.me`"
EOF
sudo systemctl restart massad
}
update() {
printf_n "${C_LGn}Node updating...${RES}"
if [ ! -n "$massa_password" ]; then
printf_n "\n${C_R}There is no massa_password variable with the password, enter it to save it in the variable!${RES}"
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/miscellaneous/insert_variable.sh) -n massa_password
fi
if [ ! -n "$massa_password" ]; then
printf_n "${C_R}There is no massa_password variable with the password!${RES}\n"
return 1 2>/dev/null; exit 1
fi
mkdir -p $HOME/massa_backup
if [ ! -f $HOME/massa_backup/wallet.dat ]; then
sudo cp $HOME/massa/massa-client/wallet.dat $HOME/massa_backup/wallet.dat
fi
if [ ! -f $HOME/massa_backup/node_privkey.key ]; then
sudo cp $HOME/massa/massa-node/config/node_privkey.key $HOME/massa_backup/node_privkey.key
fi
if grep -q "wrong password" <<< `cd $HOME/massa/massa-client/; ./massa-client -p "$massa_password" 2>&1; cd`; then
printf_n "\n${C_R}Wrong password!${RES}\n"
return 1 2>/dev/null; exit 1
fi
local massa_version=`wget -qO- https://api.github.com/repos/massalabs/massa/releases/latest | jq -r ".tag_name"`
wget -qO $HOME/massa.tar.gz "https://github.com/massalabs/massa/releases/download/${massa_version}/massa_${massa_version}_release_linux.tar.gz"
if [ `wc -c < "$HOME/massa.tar.gz"` -ge 1000 ]; then
rm -rf $HOME/massa/
tar -xvf $HOME/massa.tar.gz
chmod +x $HOME/massa/massa-node/massa-node $HOME/massa/massa-client/massa-client
sudo tee <<EOF >/dev/null /etc/systemd/system/massad.service
[Unit]
Description=Massa Node
After=network-online.target
[Service]
User=$USER
WorkingDirectory=$HOME/massa/massa-node
ExecStart=$HOME/massa/massa-node/massa-node -p "$massa_password"
Restart=on-failure
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl enable massad
sudo systemctl daemon-reload
sudo cp $HOME/massa_backup/node_privkey.key $HOME/massa/massa-node/config/node_privkey.key
open_ports
sudo cp $HOME/massa_backup/wallet.dat $HOME/massa/massa-client/wallet.dat
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/Massa/main/insert_variables.sh)
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/logo.sh)
printf_n "
The node was ${C_LGn}updated${RES}.
\tv ${C_LGn}Useful commands${RES} v
To run a client: ${C_LGn}massa_client${RES}
To view the node status: ${C_LGn}sudo systemctl status massad${RES}
To view the node log: ${C_LGn}massa_log${RES}
To restart the node: ${C_LGn}sudo systemctl restart massad${RES}
CLI client commands (use ${C_LGn}massa_cli_client -h${RES} to view the help page):
${C_LGn}`compgen -a | grep massa_ | sed "/massa_log/d"`${RES}
"
else
printf_n "${C_LR}Archive with binary downloaded unsuccessfully!${RES}\n"
fi
rm -rf $HOME/massa.tar.gz
}
install() {
if [ -d $HOME/massa/ ]; then
update
else
if [ ! -n "$massa_password" ]; then
printf_n "\n${C_LGn}Come up with a password to encrypt the keys and enter it.${RES}"
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/miscellaneous/insert_variable.sh) -n massa_password
fi
if [ ! -n "$massa_password" ]; then
printf_n "${C_R}There is no massa_password variable with the password!${RES}\n"
return 1 2>/dev/null; exit 1
fi
sudo apt update
sudo apt upgrade -y
sudo apt install jq curl pkg-config git build-essential libssl-dev -y
printf_n "${C_LGn}Node installation...${RES}"
local massa_version=`wget -qO- https://api.github.com/repos/massalabs/massa/releases/latest | jq -r ".tag_name"`
wget -qO $HOME/massa.tar.gz "https://github.com/massalabs/massa/releases/download/${massa_version}/massa_${massa_version}_release_linux.tar.gz"
if [ `wc -c < "$HOME/massa.tar.gz"` -ge 1000 ]; then
tar -xvf $HOME/massa.tar.gz
rm -rf $HOME/massa.tar.gz
chmod +x $HOME/massa/massa-node/massa-node $HOME/massa/massa-client/massa-client
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/Massa/main/insert_variables.sh)
replace_bootstraps
sudo tee <<EOF >/dev/null /etc/systemd/system/massad.service
[Unit]
Description=Massa Node
After=network-online.target
[Service]
User=$USER
WorkingDirectory=$HOME/massa/massa-node
ExecStart=$HOME/massa/massa-node/massa-node -p "$massa_password"
Restart=on-failure
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl enable massad
sudo systemctl daemon-reload
open_ports
cd $HOME/massa/massa-client/
if [ ! -d $HOME/massa_backup ]; then
./massa-client -p "$massa_password" wallet_generate_secret_key &>/dev/null
mkdir -p $HOME/massa_backup
sudo cp $HOME/massa/massa-client/wallet.dat $HOME/massa_backup/wallet.dat
while true; do
if [ -f $HOME/massa/massa-node/config/node_privkey.key ]; then
sudo cp $HOME/massa/massa-node/config/node_privkey.key $HOME/massa_backup/node_privkey.key
break
else
sleep 5
fi
done
else
sudo cp $HOME/massa_backup/node_privkey.key $HOME/massa/massa-node/config/node_privkey.key
sudo systemctl restart massad
sudo cp $HOME/massa_backup/wallet.dat $HOME/massa/massa-client/wallet.dat
fi
printf_n "${C_LGn}Done!${RES}"
cd
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/logo.sh)
printf_n "
The node was ${C_LGn}started${RES}.
Remember to save files in this directory: ${C_LR}$HOME/massa_backup/${RES}
And password for decryption: ${C_LR}${massa_password}${RES}
\tv ${C_LGn}Useful commands${RES} v
To run a client: ${C_LGn}massa_client${RES}
To view the node status: ${C_LGn}sudo systemctl status massad${RES}
To view the node log: ${C_LGn}massa_log${RES}
To restart the node: ${C_LGn}sudo systemctl restart massad${RES}
CLI client commands (use ${C_LGn}massa_cli_client -h${RES} to view the help page):
${C_LGn}`compgen -a | grep massa_ | sed "/massa_log/d"`${RES}
"
else
rm -rf $HOME/massa.tar.gz
printf_n "${C_LR}Archive with binary downloaded unsuccessfully!${RES}\n"
fi
fi
}
install_source() {
if [ -d $HOME/massa/ ]; then
printf_n "${C_LR}Node already installed!${RES}"
else
sudo apt update
sudo apt upgrade -y
sudo apt install jq curl pkg-config git build-essential libssl-dev -y
printf_n "${C_LGn}Node installation...${RES}"
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/installers/rust.sh) -n
if [ ! -d $HOME/massa/ ]; then
git clone --branch testnet https://gitlab.com/massalabs/massa.git
fi
cd $HOME/massa/massa-node/
RUST_BACKTRACE=full cargo build --release
printf "[Unit]
Description=Massa Node
After=network-online.target
[Service]
User=$USER
WorkingDirectory=$HOME/massa/massa-node
ExecStart=$HOME/massa/target/release/massa-node
Restart=on-failure
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target" > /etc/systemd/system/massad.service
sudo systemctl enable massad
sudo systemctl daemon-reload
open_ports
printf_n "
${C_LGn}Done!${RES}
${C_LGn}Client installation...${RES}
"
cd $HOME/massa/massa-client/
cargo run --release wallet_new_privkey
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/miscellaneous/insert_variable.sh) -n massa_log -v "sudo journalctl -f -n 100 -u massad" -a
fi
printf_n "${C_LGn}Done!${RES}"
cd
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/logo.sh)
printf_n "
The node was ${C_LGn}started${RES}.
Remember to save files in this directory:
${C_LR}$HOME/massa_backup/${RES}
\tv ${C_LGn}Useful commands${RES} v
To run a client: ${C_LGn}massa_client${RES}
To view the node status: ${C_LGn}sudo systemctl status massad${RES}
To view the node log: ${C_LGn}massa_log${RES}
To restart the node: ${C_LGn}sudo systemctl restart massad${RES}
CLI client commands (use ${C_LGn}massa_cli_client -h${RES} to view the help page):
${C_LGn}`compgen -a | grep massa_ | sed "/massa_log/d"`${RES}
"
}
uninstall() {
sudo systemctl stop massad
if [ ! -d $HOME/massa_backup ]; then
mkdir $HOME/massa_backup
sudo cp $HOME/massa/massa-client/wallet.dat $HOME/massa_backup/wallet.dat
sudo cp $HOME/massa/massa-node/config/node_privkey.key $HOME/massa_backup/node_privkey.key
fi
if [ -f $HOME/massa_backup/wallet.dat ] && [ -f $HOME/massa_backup/node_privkey.key ]; then
rm -rf $HOME/massa/ /etc/systemd/system/massa.service /etc/systemd/system/massad.service
sudo systemctl daemon-reload
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/miscellaneous/insert_variable.sh) -n massa_log -da
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/miscellaneous/insert_variable.sh) -n massa_client -da
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/miscellaneous/insert_variable.sh) -n massa_cli_client -da
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/miscellaneous/insert_variable.sh) -n massa_node_info -da
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/miscellaneous/insert_variable.sh) -n massa_wallet_info -da
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/miscellaneous/insert_variable.sh) -n massa_buy_rolls -da
printf_n "${C_LGn}Done!${RES}"
else
printf_n "${C_LR}No backup of the necessary files was found, delete the node manually!${RES}"
fi
}
replace_bootstraps() {
local config_path="$HOME/massa/massa-node/base_config/config.toml"
local bootstrap_list=`wget -qO- https://raw.githubusercontent.com/SecorD0/Massa/main/bootstrap_list.txt | shuf -n42 | awk '{ print " "$0"," }'`
local len=`wc -l < "$config_path"`
local start=`grep -n bootstrap_list "$config_path" | cut -d: -f1`
local end=`grep -n "\[optionnal\] port on which to listen" "$config_path" | cut -d: -f1`
local end=$((end-1))
local first_part=`sed "${start},${len}d" "$config_path"`
local second_part=`cat <<EOF
bootstrap_list = [
["149.202.86.103:31245", "P12UbyLJDS7zimGWf3LTHe8hYY67RdLke1iDRZqJbQQLHQSKPW8j"],
["149.202.89.125:31245", "P12vxrYTQzS5TRzxLfFNYxn6PyEsphKWkdqx2mVfEuvJ9sPF43uq"],
["158.69.120.215:31245", "P12rPDBmpnpnbECeAKDjbmeR19dYjAUwyLzsa8wmYJnkXLCNF28E"],
["158.69.23.120:31245", "P1XxexKa3XNzvmakNmPawqFrE9Z2NFhfq1AhvV1Qx4zXq5p1Bp9"],
["198.27.74.5:31245", "P1qxuqNnx9kyAMYxUfsYiv2gQd5viiBX126SzzexEdbbWd2vQKu"],
["198.27.74.52:31245", "P1hdgsVsd4zkNp8cF1rdqqG6JPRQasAmx12QgJaJHBHFU1fRHEH"],
["54.36.174.177:31245", "P1gEdBVEbRFbBxBtrjcTDDK9JPbJFDay27uiJRE3vmbFAFDKNh7"],
["51.75.60.228:31245", "P13Ykon8Zo73PTKMruLViMMtE2rEG646JQ4sCcee2DnopmVM3P5"],
${bootstrap_list}
]
EOF`
local third_part=`sed "1,${end}d" "$config_path"`
echo -e "${first_part}\n${second_part}\n${third_part}" > "$config_path"
sed -i -e "s%retry_delay *=.*%retry_delay = 10000%; " "$config_path"
printf_n "${C_LGn}Done!${RES}"
if sudo systemctl status massad 2>&1 | grep -q running; then
sudo systemctl restart massad
printf_n "
You can view the node bootstrapping via ${C_LGn}massa_log${RES} command
"
fi
}
# Actions
sudo apt install wget -y &>/dev/null
. <(wget -qO- https://raw.githubusercontent.com/SecorD0/utils/main/logo.sh)
cd
$function