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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
// Copyright (C) 2024 MaidSafe.net limited.
//
// This SAFE Network Software is licensed to you under The General Public License (GPL), version 3.
// Unless required by applicable law or agreed to in writing, the SAFE Network Software distributed
// under the GPL Licence is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. Please review the Licences for the specific language governing
// permissions and limitations relating to use of the SAFE Network Software.
mod subcommands;
use crate::subcommands::evm_network::EvmNetworkCommand;
use clap::{Parser, Subcommand};
use color_eyre::{eyre::eyre, Result};
use libp2p::Multiaddr;
use sn_evm::RewardsAddress;
use sn_logging::{LogBuilder, LogFormat};
use sn_node_manager::{
add_services::config::PortRange,
cmd::{self},
VerbosityLevel, DEFAULT_NODE_STARTUP_CONNECTION_TIMEOUT_S,
};
use sn_peers_acquisition::PeersArgs;
use std::{net::Ipv4Addr, path::PathBuf};
use tracing::Level;
const DEFAULT_NODE_COUNT: u16 = 25;
#[derive(Parser)]
#[command(disable_version_flag = true)]
pub(crate) struct Cmd {
/// Available sub commands.
#[clap(subcommand)]
pub cmd: Option<SubCmd>,
/// Print the crate version.
#[clap(long)]
pub crate_version: bool,
/// Output debug-level logging to stderr.
#[clap(long, conflicts_with = "trace")]
debug: bool,
/// Print the package version.
#[cfg(not(feature = "nightly"))]
#[clap(long)]
pub package_version: bool,
/// Output trace-level logging to stderr.
#[clap(long, conflicts_with = "debug")]
trace: bool,
#[clap(short, long, action = clap::ArgAction::Count, default_value_t = 2)]
verbose: u8,
/// Print version information.
#[clap(long)]
version: bool,
}
#[derive(Subcommand, Debug)]
pub enum SubCmd {
/// Add one or more safenode services.
///
/// By default, the latest safenode binary will be downloaded; however, it is possible to
/// provide a binary either by specifying a URL, a local path, or a specific version number.
///
/// On Windows, this command must run with administrative privileges.
///
/// On macOS and most distributions of Linux, the command does not require elevated privileges,
/// but it *can* be used with sudo if desired. If the command runs without sudo, services will
/// be defined as user-mode services; otherwise, they will be created as system-wide services.
/// The main difference is that user-mode services require an active user session, whereas a
/// system-wide service can run completely in the background, without any user session.
///
/// On some distributions of Linux, e.g., Alpine, sudo will be required. This is because the
/// OpenRC service manager, which is used on Alpine, doesn't support user-mode services. Most
/// distributions, however, use Systemd, which *does* support user-mode services.
#[clap(name = "add")]
Add {
/// Set to automatically restart safenode services upon OS reboot.
///
/// If not used, any added services will *not* restart automatically when the OS reboots
/// and they will need to be explicitly started again.
#[clap(long, default_value_t = false)]
auto_restart: bool,
/// Auto set NAT flags (--upnp or --home-network) if our NAT status has been obtained by
/// running the NAT detection command.
///
/// Using the argument will cause an error if the NAT detection command has not already
/// ran.
///
/// This will override any --upnp or --home-network options.
#[clap(long, default_value_t = false)]
auto_set_nat_flags: bool,
/// The number of service instances.
///
/// If the --first argument is used, the count has to be one, so --count and --first are
/// mutually exclusive.
#[clap(long, conflicts_with = "first")]
count: Option<u16>,
/// Provide the path for the data directory for the installed node.
///
/// This path is a prefix. Each installed node will have its own directory underneath it.
///
/// If not provided, the default location is platform specific:
/// - Linux/macOS (system-wide): /var/safenode-manager/services
/// - Linux/macOS (user-mode): ~/.local/share/safe/node
/// - Windows: C:\ProgramData\safenode\services
#[clap(long, verbatim_doc_comment)]
data_dir_path: Option<PathBuf>,
/// Set this flag to enable the metrics server. The ports will be selected at random.
///
/// If you're passing the compiled safenode via --path, make sure to enable the open-metrics feature
/// when compiling.
///
/// If you want to specify the ports, use the --metrics-port argument.
#[clap(long)]
enable_metrics_server: bool,
/// Provide environment variables for the safenode service.
///
/// Useful to set log levels. Variables should be comma separated without spaces.
///
/// Example: --env SN_LOG=all,RUST_LOG=libp2p=debug
#[clap(name = "env", long, use_value_delimiter = true, value_parser = parse_environment_variables)]
env_variables: Option<Vec<(String, String)>>,
/// Specify what EVM network to use for payments.
#[command(subcommand)]
evm_network: EvmNetworkCommand,
/// Set this flag to use the safenode '--home-network' feature.
///
/// This enables the use of safenode services from a home network with a router.
#[clap(long)]
home_network: bool,
/// Set this flag to launch safenode with the --local flag.
///
/// This is useful for building a service-based local network.
#[clap(long)]
local: bool,
/// Provide the path for the log directory for the installed node.
///
/// This path is a prefix. Each installed node will have its own directory underneath it.
///
/// If not provided, the default location is platform specific:
/// - Linux/macOS (system-wide): /var/log/safenode
/// - Linux/macOS (user-mode): ~/.local/share/safe/node/*/logs
/// - Windows: C:\ProgramData\safenode\logs
#[clap(long, verbatim_doc_comment)]
log_dir_path: Option<PathBuf>,
/// Specify the logging format for started nodes.
///
/// Valid values are "default" or "json".
///
/// If the argument is not used, the default format will be applied.
#[clap(long, value_parser = LogFormat::parse_from_str, verbatim_doc_comment)]
log_format: Option<LogFormat>,
/// Specify the maximum number of uncompressed log files to store.
///
/// After reaching this limit, the older files are archived to save space.
/// You can also specify the maximum number of archived log files to keep.
#[clap(long, verbatim_doc_comment)]
max_log_files: Option<usize>,
/// Specify the maximum number of archived log files to store.
///
/// After reaching this limit, the older archived files are deleted.
#[clap(long, verbatim_doc_comment)]
max_archived_log_files: Option<usize>,
/// Specify a port for the open metrics server.
///
/// If you're passing the compiled safenode via --node-path, make sure to enable the open-metrics feature
/// when compiling.
///
/// If not set, metrics server will not be started. Use --enable-metrics-server to start
/// the metrics server without specifying a port.
///
/// If multiple services are being added and this argument is used, you must specify a
/// range. For example, '12000-12004'. The length of the range must match the number of
/// services, which in this case would be 5. The range must also go from lower to higher.
#[clap(long, value_parser = PortRange::parse)]
metrics_port: Option<PortRange>,
/// Specify the IP address for the safenode service(s).
///
/// If not set, we bind to all the available network interfaces.
#[clap(long)]
node_ip: Option<Ipv4Addr>,
/// Specify a port for the safenode service(s).
///
/// If not used, ports will be selected at random.
///
/// If multiple services are being added and this argument is used, you must specify a
/// range. For example, '12000-12004'. The length of the range must match the number of
/// services, which in this case would be 5. The range must also go from lower to higher.
#[clap(long, value_parser = PortRange::parse)]
node_port: Option<PortRange>,
/// Specify the owner for the node service.
///
/// This is mainly used for the 'Beta Rewards' programme, for linking your Discord username
/// to the node.
///
/// If the option is not used, the node will assign its own username and the service will
/// run as normal.
#[clap(long)]
owner: Option<String>,
/// Provide a path for the safenode binary to be used by the service.
///
/// Useful for creating the service using a custom built binary.
#[clap(long)]
path: Option<PathBuf>,
#[command(flatten)]
peers: PeersArgs,
/// Specify the wallet address that will receive the node's earnings.
#[clap(long)]
rewards_address: RewardsAddress,
/// Specify an Ipv4Addr for the node's RPC server to run on.
///
/// Useful if you want to expose the RPC server pubilcly. Ports are assigned automatically.
///
/// If not set, the RPC server is run locally.
#[clap(long)]
rpc_address: Option<Ipv4Addr>,
/// Specify a port for the RPC service(s).
///
/// If not used, ports will be selected at random.
///
/// If multiple services are being added and this argument is used, you must specify a
/// range. For example, '12000-12004'. The length of the range must match the number of
/// services, which in this case would be 5. The range must also go from lower to higher.
#[clap(long, value_parser = PortRange::parse)]
rpc_port: Option<PortRange>,
/// Try to use UPnP to open a port in the home router and allow incoming connections.
///
/// This requires a safenode binary built with the 'upnp' feature.
#[clap(long, default_value_t = false)]
upnp: bool,
/// Provide a safenode binary using a URL.
///
/// The binary must be inside a zip or gzipped tar archive.
///
/// This option can be used to test a safenode binary that has been built from a forked
/// branch and uploaded somewhere. A typical use case would be for a developer who launches
/// a testnet to test some changes they have on a fork.
#[clap(long, conflicts_with = "version")]
url: Option<String>,
/// The user the service should run as.
///
/// If the account does not exist, it will be created.
///
/// On Windows this argument will have no effect.
#[clap(long)]
user: Option<String>,
/// Provide a specific version of safenode to be installed.
///
/// The version number should be in the form X.Y.Z, with no 'v' prefix.
///
/// The binary will be downloaded.
#[clap(long)]
version: Option<String>,
},
#[clap(subcommand)]
Auditor(AuditorSubCmd),
/// Get node reward balances.
#[clap(name = "balance")]
Balance {
/// Display the balance for a specific service using its peer ID.
///
/// The argument can be used multiple times.
#[clap(long)]
peer_id: Vec<String>,
/// Display the balance for a specific service using its name.
///
/// The argument can be used multiple times.
#[clap(long, conflicts_with = "peer_id")]
service_name: Vec<String>,
},
#[clap(subcommand)]
Daemon(DaemonSubCmd),
#[clap(subcommand)]
Faucet(FaucetSubCmd),
#[clap(subcommand)]
Local(LocalSubCmd),
#[clap(subcommand)]
NatDetection(NatDetectionSubCmd),
/// Remove safenode service(s).
///
/// If no peer ID(s) or service name(s) are supplied, all services will be removed.
///
/// Services must be stopped before they can be removed.
///
/// On Windows, this command must run as the administrative user. On Linux/macOS, run using
/// sudo if you defined system-wide services; otherwise, do not run the command elevated.
#[clap(name = "remove")]
Remove {
/// The peer ID of the service to remove.
///
/// The argument can be used multiple times to remove many services.
#[clap(long)]
peer_id: Vec<String>,
/// The name of the service to remove.
///
/// The argument can be used multiple times to remove many services.
#[clap(long, conflicts_with = "peer_id")]
service_name: Vec<String>,
/// Set this flag to keep the node's data and log directories.
#[clap(long)]
keep_directories: bool,
},
/// Reset back to a clean base state.
///
/// Stop and remove all services and delete the node registry, which will set the service
/// counter back to zero.
///
/// This command must run as the root/administrative user.
#[clap(name = "reset")]
Reset {
/// Set to suppress the confirmation prompt.
#[clap(long, short)]
force: bool,
},
/// Start safenode service(s).
///
/// By default, each node service is started after the previous node has successfully connected to the network or
/// after the 'connection-timeout' period has been reached for that node. The timeout is 300 seconds by default.
/// The above behaviour can be overridden by setting a fixed interval between starting each node service using the
/// 'interval' argument.
///
/// If no peer ID(s) or service name(s) are supplied, all services will be started.
///
/// On Windows, this command must run as the administrative user. On Linux/macOS, run using
/// sudo if you defined system-wide services; otherwise, do not run the command elevated.
#[clap(name = "start")]
Start {
/// The max time in seconds to wait for a node to connect to the network. If the node does not connect to the
/// network within this time, the node is considered failed.
///
/// This argument is mutually exclusive with the 'interval' argument.
///
/// Defaults to 300s.
#[clap(long, default_value_t = DEFAULT_NODE_STARTUP_CONNECTION_TIMEOUT_S, conflicts_with = "interval")]
connection_timeout: u64,
/// An interval applied between launching each service.
///
/// Use connection-timeout to scale the interval automatically. This argument is mutually exclusive with the
/// 'connection-timeout' argument.
///
/// Units are milliseconds.
#[clap(long, conflicts_with = "connection-timeout")]
interval: Option<u64>,
/// The peer ID of the service to start.
///
/// The argument can be used multiple times to start many services.
#[clap(long)]
peer_id: Vec<String>,
/// The name of the service to start.
///
/// The argument can be used multiple times to start many services.
#[clap(long, conflicts_with = "peer_id")]
service_name: Vec<String>,
},
/// Get the status of services.
#[clap(name = "status")]
Status {
/// Set this flag to display more details
#[clap(long)]
details: bool,
/// Set this flag to return an error if any nodes are not running
#[clap(long)]
fail: bool,
/// Set this flag to output the status as a JSON document
#[clap(long, conflicts_with = "details")]
json: bool,
},
/// Stop safenode service(s).
///
/// If no peer ID(s) or service name(s) are supplied, all services will be stopped.
///
/// On Windows, this command must run as the administrative user. On Linux/macOS, run using
/// sudo if you defined system-wide services; otherwise, do not run the command elevated.
#[clap(name = "stop")]
Stop {
/// An interval applied between stopping each service.
///
/// Units are milliseconds.
#[clap(long, conflicts_with = "connection-timeout")]
interval: Option<u64>,
/// The peer ID of the service to stop.
///
/// The argument can be used multiple times to stop many services.
#[clap(long)]
peer_id: Vec<String>,
/// The name of the service to stop.
///
/// The argument can be used multiple times to stop many services.
#[clap(long, conflicts_with = "peer_id")]
service_name: Vec<String>,
},
/// Upgrade safenode services.
///
/// By default, each node service is started after the previous node has successfully connected to the network or
/// after the 'connection-timeout' period has been reached for that node. The timeout is 300 seconds by default.
/// The above behaviour can be overridden by setting a fixed interval between starting each node service using the
/// 'interval' argument.
///
/// If no peer ID(s) or service name(s) are supplied, all services will be upgraded.
///
/// On Windows, this command must run as the administrative user. On Linux/macOS, run using
/// sudo if you defined system-wide services; otherwise, do not run the command elevated.
#[clap(name = "upgrade")]
Upgrade {
/// The max time in seconds to wait for a node to connect to the network. If the node does not connect to the
/// network within this time, the node is considered failed.
///
/// This argument is mutually exclusive with the 'interval' argument.
///
/// Defaults to 300s.
#[clap(long, default_value_t = DEFAULT_NODE_STARTUP_CONNECTION_TIMEOUT_S, conflicts_with = "interval")]
connection_timeout: u64,
/// Set this flag to upgrade the nodes without automatically starting them.
///
/// Can be useful for testing scenarios.
#[clap(long)]
do_not_start: bool,
/// Provide environment variables for the safenode service.
///
/// Values set when the service was added will be overridden.
///
/// Useful to set safenode's log levels. Variables should be comma separated without
/// spaces.
///
/// Example: --env SN_LOG=all,RUST_LOG=libp2p=debug
#[clap(name = "env", long, use_value_delimiter = true, value_parser = parse_environment_variables)]
env_variables: Option<Vec<(String, String)>>,
/// Set this flag to force the upgrade command to replace binaries without comparing any
/// version numbers.
///
/// Required if we want to downgrade, or for testing purposes.
#[clap(long)]
force: bool,
/// An interval applied between upgrading each service.
///
/// Use connection-timeout to scale the interval automatically. This argument is mutually exclusive with the
/// 'connection-timeout' argument.
///
/// Units are milliseconds.
#[clap(long, conflicts_with = "connection-timeout")]
interval: Option<u64>,
/// Provide a path for the safenode binary to be used by the service.
///
/// Useful for upgrading the service using a custom built binary.
#[clap(long)]
path: Option<PathBuf>,
/// The peer ID of the service to upgrade
#[clap(long)]
peer_id: Vec<String>,
/// The name of the service to upgrade
#[clap(long, conflicts_with = "peer_id")]
service_name: Vec<String>,
/// Provide a binary to upgrade to using a URL.
///
/// The binary must be inside a zip or gzipped tar archive.
///
/// This can be useful for testing scenarios.
#[clap(long, conflicts_with = "version")]
url: Option<String>,
/// Upgrade to a specific version rather than the latest version.
///
/// The version number should be in the form X.Y.Z, with no 'v' prefix.
#[clap(long)]
version: Option<String>,
},
}
/// Manage the Auditor service.
#[derive(Subcommand, Debug)]
pub enum AuditorSubCmd {
/// Add an auditor service to collect and verify Spends from the network.
///
/// By default, the latest sn_auditor binary will be downloaded; however, it is possible to
/// provide a binary either by specifying a URL, a local path, or a specific version number.
///
/// This command must run as the root/administrative user.
#[clap(name = "add")]
Add {
/// Secret encryption key of the beta rewards to decypher
/// discord usernames of the beta participants
#[clap(short = 'k', long, value_name = "hex_secret_key")]
beta_encryption_key: Option<String>,
/// Provide environment variables for the auditor service.
///
/// Useful to set log levels. Variables should be comma separated without spaces.
///
/// Example: --env SN_LOG=all,RUST_LOG=libp2p=debug
#[clap(name = "env", long, use_value_delimiter = true, value_parser = parse_environment_variables)]
env_variables: Option<Vec<(String, String)>>,
/// Provide the path for the log directory for the auditor.
///
/// If not provided, the default location /var/log/auditor.
#[clap(long, verbatim_doc_comment)]
log_dir_path: Option<PathBuf>,
/// Provide a path for the auditor binary to be used by the service.
///
/// Useful for creating the auditor service using a custom built binary.
#[clap(long)]
path: Option<PathBuf>,
#[command(flatten)]
peers: Box<PeersArgs>,
/// Provide a auditor binary using a URL.
///
/// The binary must be inside a zip or gzipped tar archive.
///
/// This option can be used to test a auditor binary that has been built from a forked
/// branch and uploaded somewhere. A typical use case would be for a developer who launches
/// a testnet to test some changes they have on a fork.
#[clap(long, conflicts_with = "version")]
url: Option<String>,
/// Provide a specific version of the auditor to be installed.
///
/// The version number should be in the form X.Y.Z, with no 'v' prefix.
///
/// The binary will be downloaded.
#[clap(long)]
version: Option<String>,
},
/// Start the auditor service.
///
/// This command must run as the root/administrative user.
#[clap(name = "start")]
Start {},
/// Stop the auditor service.
///
/// This command must run as the root/administrative user.
#[clap(name = "stop")]
Stop {},
/// Upgrade the Auditor.
///
/// The running auditor will be stopped, its binary will be replaced, then it will be started
/// again.
///
/// This command must run as the root/administrative user.
#[clap(name = "upgrade")]
Upgrade {
/// Set this flag to upgrade the auditor without starting it.
///
/// Can be useful for testing scenarios.
#[clap(long)]
do_not_start: bool,
/// Set this flag to force the upgrade command to replace binaries without comparing any
/// version numbers.
///
/// Required if we want to downgrade, or for testing purposes.
#[clap(long)]
force: bool,
/// Provide environment variables for the auditor service.
///
/// Values set when the service was added will be overridden.
///
/// Useful to set log levels. Variables should be comma separated without spaces.
///
/// Example: --env SN_LOG=all,RUST_LOG=libp2p=debug
#[clap(name = "env", long, use_value_delimiter = true, value_parser = parse_environment_variables)]
env_variables: Option<Vec<(String, String)>>,
/// Provide a binary to upgrade to using a URL.
///
/// The binary must be inside a zip or gzipped tar archive.
///
/// This can be useful for testing scenarios.
#[clap(long, conflicts_with = "version")]
url: Option<String>,
/// Upgrade to a specific version rather than the latest version.
///
/// The version number should be in the form X.Y.Z, with no 'v' prefix.
#[clap(long)]
version: Option<String>,
},
}
/// Manage the RPC service.
#[derive(Subcommand, Debug)]
pub enum DaemonSubCmd {
/// Add a daemon service for issuing commands via RPC.
///
/// By default, the latest safenodemand binary will be downloaded; however, it is possible to
/// provide a binary either by specifying a URL, a local path, or a specific version number.
///
/// This command must run as the root/administrative user.
#[clap(name = "add")]
Add {
/// Specify an Ipv4Addr for the daemon to listen on.
///
/// This is useful for managing nodes remotely.
///
/// If not set, the daemon listens locally.
#[clap(long, default_value_t = Ipv4Addr::new(127, 0, 0, 1))]
address: Ipv4Addr,
/// Provide environment variables for the daemon service.
///
/// Useful to set log levels. Variables should be comma separated without spaces.
///
/// Example: --env SN_LOG=all,RUST_LOG=libp2p=debug
#[clap(name = "env", long, use_value_delimiter = true, value_parser = parse_environment_variables)]
env_variables: Option<Vec<(String, String)>>,
/// Specify a port for the daemon to listen on.
#[clap(long, default_value_t = 12500)]
port: u16,
/// Provide a path for the daemon binary to be used by the service.
///
/// Useful for creating the daemon service using a custom built binary.
#[clap(long)]
path: Option<PathBuf>,
/// Provide a faucet binary using a URL.
///
/// The binary must be inside a zip or gzipped tar archive.
///
/// This option can be used to test a faucet binary that has been built from a forked
/// branch and uploaded somewhere. A typical use case would be for a developer who launches
/// a testnet to test some changes they have on a fork.
#[clap(long, conflicts_with = "version")]
url: Option<String>,
/// Provide a specific version of the daemon to be installed.
///
/// The version number should be in the form X.Y.Z, with no 'v' prefix.
///
/// The binary will be downloaded.
#[clap(long)]
version: Option<String>,
},
/// Start the daemon service.
///
/// This command must run as the root/administrative user.
#[clap(name = "start")]
Start {},
/// Stop the daemon service.
///
/// This command must run as the root/administrative user.
#[clap(name = "stop")]
Stop {},
}
/// Manage the faucet service.
#[derive(Subcommand, Debug)]
pub enum FaucetSubCmd {
/// Add a faucet service.
///
/// By default, the latest faucet binary will be downloaded; however, it is possible to provide
/// a binary either by specifying a URL, a local path, or a specific version number.
///
/// This command must run as the root/administrative user.
///
/// Windows is not supported for running a faucet.
#[clap(name = "add")]
Add {
/// Provide environment variables for the faucet service.
///
/// Useful to set log levels. Variables should be comma separated without spaces.
///
/// Example: --env SN_LOG=all,RUST_LOG=libp2p=debug
#[clap(name = "env", long, use_value_delimiter = true, value_parser = parse_environment_variables)]
env_variables: Option<Vec<(String, String)>>,
/// Provide the path for the log directory for the faucet.
///
/// If not provided, the default location /var/log/faucet.
#[clap(long, verbatim_doc_comment)]
log_dir_path: Option<PathBuf>,
/// Provide a path for the faucet binary to be used by the service.
///
/// Useful for creating the faucet service using a custom built binary.
#[clap(long)]
path: Option<PathBuf>,
#[command(flatten)]
peers: PeersArgs,
/// Provide a faucet binary using a URL.
///
/// The binary must be inside a zip or gzipped tar archive.
///
/// This option can be used to test a faucet binary that has been built from a forked
/// branch and uploaded somewhere. A typical use case would be for a developer who launches
/// a testnet to test some changes they have on a fork.
#[clap(long, conflicts_with = "version")]
url: Option<String>,
/// Provide a specific version of the faucet to be installed.
///
/// The version number should be in the form X.Y.Z, with no 'v' prefix.
///
/// The binary will be downloaded.
#[clap(long)]
version: Option<String>,
},
/// Start the faucet service.
///
/// This command must run as the root/administrative user.
#[clap(name = "start")]
Start {},
/// Stop the faucet service.
///
/// This command must run as the root/administrative user.
#[clap(name = "stop")]
Stop {},
/// Upgrade the faucet.
///
/// The running faucet will be stopped, its binary will be replaced, then it will be started
/// again.
///
/// This command must run as the root/administrative user.
#[clap(name = "upgrade")]
Upgrade {
/// Set this flag to upgrade the faucet without starting it.
///
/// Can be useful for testing scenarios.
#[clap(long)]
do_not_start: bool,
/// Set this flag to force the upgrade command to replace binaries without comparing any
/// version numbers.
///
/// Required if we want to downgrade, or for testing purposes.
#[clap(long)]
force: bool,
/// Provide environment variables for the faucet service.
///
/// Values set when the service was added will be overridden.
///
/// Useful to set log levels. Variables should be comma separated without spaces.
///
/// Example: --env SN_LOG=all,RUST_LOG=libp2p=debug
#[clap(name = "env", long, use_value_delimiter = true, value_parser = parse_environment_variables)]
env_variables: Option<Vec<(String, String)>>,
/// Provide a binary to upgrade to using a URL.
///
/// The binary must be inside a zip or gzipped tar archive.
///
/// This can be useful for testing scenarios.
#[clap(long, conflicts_with = "version")]
url: Option<String>,
/// Upgrade to a specific version rather than the latest version.
///
/// The version number should be in the form X.Y.Z, with no 'v' prefix.
#[clap(long)]
version: Option<String>,
},
}
/// Manage NAT detection.
#[derive(Subcommand, Debug, Clone)]
pub enum NatDetectionSubCmd {
/// Use NAT detection to determine NAT status.
///
/// The status can be used with the '--auto-set-nat-flags' argument on the 'add' command.
Run {
/// Provide a path for the NAT detection binary to be used.
///
/// Useful for running NAT detection using a custom built binary.
#[clap(long)]
path: Option<PathBuf>,
/// Provide NAT servers in the form of a multiaddr or an address/port pair. If no servers are provided,
/// the default servers will be used.
///
/// We attempt to establish connections to these servers to determine our own NAT status.
///
/// The argument can be used multiple times.
#[clap(long, value_delimiter = ',')]
servers: Option<Vec<Multiaddr>>,
/// Provide a NAT detection binary using a URL.
///
/// The binary must be inside a zip or gzipped tar archive.
///
/// This option can be used to test a nat detection binary that has been built from a forked
/// branch and uploaded somewhere. A typical use case would be for a developer who launches
/// a testnet to test some changes they have on a fork.
#[clap(long, conflicts_with = "version")]
url: Option<String>,
/// Provide a specific version of the NAT detection to be installed.
///
/// The version number should be in the form X.Y.Z, with no 'v' prefix.
///
/// The binary will be downloaded.
#[clap(long, default_value = "0.1.0")]
version: Option<String>,
},
}
/// Manage local networks.
#[derive(Subcommand, Debug)]
pub enum LocalSubCmd {
/// Kill the running local network.
#[clap(name = "kill")]
Kill {
/// Set this flag to keep the node's data and log directories.
#[clap(long)]
keep_directories: bool,
},
/// Join an existing local network.
///
/// The existing network can be managed outwith the node manager. If this is the case, use the
/// `--peer` argument to specify an initial peer to connect to.
///
/// If no `--peer` argument is supplied, the nodes will be added to the existing local network
/// being managed by the node manager.
#[clap(name = "join")]
Join {
/// Set to build the safenode and faucet binaries.
///
/// This option requires the command run from the root of the safe_network repository.
#[clap(long)]
build: bool,
/// The number of nodes to run.
#[clap(long, default_value_t = DEFAULT_NODE_COUNT)]
count: u16,
/// Set this flag to enable the metrics server. The ports will be selected at random.
///
/// If you're passing the compiled safenode via --node-path, make sure to enable the open-metrics feature flag
/// on the safenode when compiling. If you're using --build, then make sure to enable the feature flag on the
/// safenode-manager.
///
/// If you want to specify the ports, use the --metrics-port argument.
#[clap(long)]
enable_metrics_server: bool,
/// Path to a faucet binary
///
/// The path and version arguments are mutually exclusive.
#[clap(long, conflicts_with = "faucet_version")]
faucet_path: Option<PathBuf>,
/// The version of the faucet to use.
///
/// The version number should be in the form X.Y.Z, with no 'v' prefix.
///
/// The version and path arguments are mutually exclusive.
#[clap(long)]
faucet_version: Option<String>,
/// An interval applied between launching each node.
///
/// Units are milliseconds.
#[clap(long, default_value_t = 200)]
interval: u64,
/// Specify the logging format.
///
/// Valid values are "default" or "json".
///
/// If the argument is not used, the default format will be applied.
#[clap(long, value_parser = LogFormat::parse_from_str, verbatim_doc_comment)]
log_format: Option<LogFormat>,
/// Specify a port for the open metrics server.
///
/// If you're passing the compiled safenode via --node-path, make sure to enable the open-metrics feature flag
/// on the safenode when compiling. If you're using --build, then make sure to enable the feature flag on the
/// safenode-manager.
///
/// If not set, metrics server will not be started. Use --enable-metrics-server to start
/// the metrics server without specifying a port.
///
/// If multiple services are being added and this argument is used, you must specify a
/// range. For example, '12000-12004'. The length of the range must match the number of
/// services, which in this case would be 5. The range must also go from lower to higher.
#[clap(long, value_parser = PortRange::parse)]
metrics_port: Option<PortRange>,
/// Path to a safenode binary.
///
/// Make sure to enable the local feature flag on the safenode when compiling the binary.
///
/// The path and version arguments are mutually exclusive.
#[clap(long, conflicts_with = "node_version")]
node_path: Option<PathBuf>,
/// Specify a port for the safenode service(s).
///
/// If not used, ports will be selected at random.
///
/// If multiple services are being added and this argument is used, you must specify a
/// range. For example, '12000-12004'. The length of the range must match the number of
/// services, which in this case would be 5. The range must also go from lower to higher.
#[clap(long, value_parser = PortRange::parse)]
node_port: Option<PortRange>,
/// The version of safenode to use.
///
/// The version number should be in the form X.Y.Z, with no 'v' prefix.
///
/// The version and path arguments are mutually exclusive.
#[clap(long)]
node_version: Option<String>,
#[command(flatten)]
peers: PeersArgs,
/// Specify the owner for each node in the local network
///
/// The argument exists to support testing scenarios.
#[clap(long, conflicts_with = "owner_prefix")]
owner: Option<String>,
/// Use this argument to launch each node in the network with an individual owner.
///
/// Assigned owners will take the form "prefix_1", "prefix_2" etc., where "prefix" will be
/// replaced by the value specified by this argument.
///
/// The argument exists to support testing scenarios.
#[clap(long, conflicts_with = "owner")]
owner_prefix: Option<String>,
/// Specify a port for the RPC service(s).
///
/// If not used, ports will be selected at random.
///
/// If multiple services are being added and this argument is used, you must specify a
/// range. For example, '12000-12004'. The length of the range must match the number of
/// services, which in this case would be 5. The range must also go from lower to higher.
#[clap(long, value_parser = PortRange::parse)]
rpc_port: Option<PortRange>,
/// Specify the wallet address that will receive the node's earnings.
#[clap(long)]
rewards_address: RewardsAddress,
/// Optionally specify what EVM network to use for payments.
#[command(subcommand)]
evm_network: Option<EvmNetworkCommand>,
/// Set to skip the network validation process
#[clap(long)]
skip_validation: bool,
},
/// Run a local network.
///
/// This will run safenode processes on the current machine to form a local network. A faucet
/// service will also run for dispensing tokens.
///
/// Paths can be supplied for safenode and faucet binaries, but otherwise, the latest versions
/// will be downloaded.
#[clap(name = "run")]
Run {
/// Set to build the safenode and faucet binaries.
///
/// This option requires the command run from the root of the safe_network repository.
#[clap(long)]
build: bool,
/// Set to remove the client data directory and kill any existing local network.
#[clap(long)]
clean: bool,
/// The number of nodes to run.
#[clap(long, default_value_t = DEFAULT_NODE_COUNT)]
count: u16,
/// Set this flag to enable the metrics server. The ports will be selected at random.
///
/// If you're passing the compiled safenode via --node-path, make sure to enable the open-metrics feature flag
/// on the safenode when compiling. If you're using --build, then make sure to enable the feature flag on the
/// safenode-manager.
///
/// If you want to specify the ports, use the --metrics-port argument.
#[clap(long)]
enable_metrics_server: bool,
/// Path to a faucet binary.
///
/// The path and version arguments are mutually exclusive.
#[clap(long, conflicts_with = "faucet_version", conflicts_with = "build")]
faucet_path: Option<PathBuf>,
/// The version of the faucet to use.
///
/// The version number should be in the form X.Y.Z, with no 'v' prefix.
///
/// The version and path arguments are mutually exclusive.
#[clap(long, conflicts_with = "build")]
faucet_version: Option<String>,
/// An interval applied between launching each node.
///
/// Units are milliseconds.
#[clap(long, default_value_t = 200)]
interval: u64,
/// Specify the logging format.
///
/// Valid values are "default" or "json".
///
/// If the argument is not used, the default format will be applied.
#[clap(long, value_parser = LogFormat::parse_from_str, verbatim_doc_comment)]
log_format: Option<LogFormat>,
/// Specify a port for the open metrics server.
///
/// If you're passing the compiled safenode via --node-path, make sure to enable the open-metrics feature flag
/// on the safenode when compiling. If you're using --build, then make sure to enable the feature flag on the
/// safenode-manager.
///
/// If not set, metrics server will not be started. Use --enable-metrics-server to start
/// the metrics server without specifying a port.
///
/// If multiple services are being added and this argument is used, you must specify a
/// range. For example, '12000-12004'. The length of the range must match the number of
/// services, which in this case would be 5. The range must also go from lower to higher.
#[clap(long, value_parser = PortRange::parse)]
metrics_port: Option<PortRange>,
/// Path to a safenode binary
///
/// Make sure to enable the local feature flag on the safenode when compiling the binary.
///
/// The path and version arguments are mutually exclusive.
#[clap(long, conflicts_with = "node_version", conflicts_with = "build")]
node_path: Option<PathBuf>,
/// Specify a port for the safenode service(s).
///
/// If not used, ports will be selected at random.
///
/// If multiple services are being added and this argument is used, you must specify a
/// range. For example, '12000-12004'. The length of the range must match the number of
/// services, which in this case would be 5. The range must also go from lower to higher.
#[clap(long, value_parser = PortRange::parse)]
node_port: Option<PortRange>,
/// The version of safenode to use.
///
/// The version number should be in the form X.Y.Z, with no 'v' prefix.
///
/// The version and path arguments are mutually exclusive.
#[clap(long, conflicts_with = "build")]
node_version: Option<String>,
/// Specify the owner for each node in the local network
///
/// The argument exists to support testing scenarios.
#[clap(long, conflicts_with = "owner_prefix")]
owner: Option<String>,
/// Use this argument to launch each node in the network with an individual owner.
///
/// Assigned owners will take the form "prefix_1", "prefix_2" etc., where "prefix" will be
/// replaced by the value specified by this argument.
///
/// The argument exists to support testing scenarios.
#[clap(long)]
#[clap(long, conflicts_with = "owner")]
owner_prefix: Option<String>,
/// Specify a port for the RPC service(s).
///
/// If not used, ports will be selected at random.
///
/// If multiple services are being added and this argument is used, you must specify a
/// range. For example, '12000-12004'. The length of the range must match the number of
/// services, which in this case would be 5. The range must also go from lower to higher.
#[clap(long, value_parser = PortRange::parse)]
rpc_port: Option<PortRange>,
/// Specify the wallet address that will receive the node's earnings.
#[clap(long)]
rewards_address: RewardsAddress,
/// Optionally specify what EVM network to use for payments.
#[command(subcommand)]
evm_network: Option<EvmNetworkCommand>,
/// Set to skip the network validation process
#[clap(long)]
skip_validation: bool,
},
/// Get the status of the local nodes.
#[clap(name = "status")]
Status {
/// Set this flag to display more details
#[clap(long)]
details: bool,
/// Set this flag to return an error if any nodes are not running
#[clap(long)]
fail: bool,
/// Set this flag to output the status as a JSON document
#[clap(long, conflicts_with = "details")]
json: bool,
},
}
#[tokio::main(flavor = "current_thread")]
async fn main() -> Result<()> {
color_eyre::install()?;
let args = Cmd::parse();
if args.version {
println!(
"{}",
sn_build_info::version_string("Autonomi Node Manager", env!("CARGO_PKG_VERSION"), None)
);
return Ok(());
}
if args.crate_version {
println!("{}", env!("CARGO_PKG_VERSION"));
return Ok(());
}
#[cfg(not(feature = "nightly"))]
if args.package_version {
println!("{}", sn_build_info::package_version());
return Ok(());
}
let verbosity = VerbosityLevel::from(args.verbose);
let _log_handle = if args.debug || args.trace {
let level = if args.debug {
Level::DEBUG
} else {
Level::TRACE
};
get_log_builder(level)?.initialize()?.1
} else {
None
};
configure_winsw(verbosity).await?;
tracing::info!("Executing cmd: {:?}", args.cmd);
match args.cmd {
Some(SubCmd::Add {
auto_restart,
auto_set_nat_flags,
count,
data_dir_path,
enable_metrics_server,
env_variables,
evm_network,
home_network,
local,
log_dir_path,
log_format,
max_archived_log_files,
max_log_files,
metrics_port,
node_ip,
node_port,
owner,
path,
peers,
rewards_address,
rpc_address,
rpc_port,
url,
upnp,
user,
version,
}) => {
cmd::node::add(
auto_restart,
auto_set_nat_flags,
count,
data_dir_path,
enable_metrics_server,
env_variables,
Some(evm_network.try_into()?),
home_network,
local,
log_dir_path,
log_format,
max_archived_log_files,
max_log_files,
metrics_port,
node_ip,
node_port,
owner,
peers,
rewards_address,
rpc_address,
rpc_port,
path,
upnp,
url,
user,
version,
verbosity,
)
.await?;
Ok(())
}
Some(SubCmd::Auditor(AuditorSubCmd::Add {
beta_encryption_key,
env_variables,
log_dir_path,
path,
peers,
url,
version,
})) => {
cmd::auditor::add(
beta_encryption_key,
env_variables,
log_dir_path,
*peers,
path,
url,
version,
verbosity,
)
.await
}
Some(SubCmd::Auditor(AuditorSubCmd::Start {})) => cmd::auditor::start(verbosity).await,
Some(SubCmd::Auditor(AuditorSubCmd::Stop {})) => cmd::auditor::stop(verbosity).await,
Some(SubCmd::Auditor(AuditorSubCmd::Upgrade {
do_not_start,
force,
env_variables,
url,
version,
})) => {
cmd::auditor::upgrade(do_not_start, force, env_variables, url, version, verbosity).await
}
Some(SubCmd::Balance {
peer_id: peer_ids,
service_name: service_names,
}) => cmd::node::balance(peer_ids, service_names, verbosity).await,
Some(SubCmd::Daemon(DaemonSubCmd::Add {
address,
env_variables,
port,
path,
url,
version,
})) => cmd::daemon::add(address, env_variables, port, path, url, version, verbosity).await,
Some(SubCmd::Daemon(DaemonSubCmd::Start {})) => cmd::daemon::start(verbosity).await,
Some(SubCmd::Daemon(DaemonSubCmd::Stop {})) => cmd::daemon::stop(verbosity).await,
Some(SubCmd::Faucet(faucet_command)) => match faucet_command {
FaucetSubCmd::Add {
env_variables,
log_dir_path,
path,
peers,
url,
version,
} => {
cmd::faucet::add(
env_variables,
log_dir_path,
peers,
path,
url,
version,
verbosity,
)
.await
}
FaucetSubCmd::Start {} => cmd::faucet::start(verbosity).await,
FaucetSubCmd::Stop {} => cmd::faucet::stop(verbosity).await,
FaucetSubCmd::Upgrade {
do_not_start,
force,
env_variables: provided_env_variable,
url,
version,
} => {
cmd::faucet::upgrade(
do_not_start,
force,
provided_env_variable,
url,
version,
verbosity,
)
.await
}
},
Some(SubCmd::Local(local_command)) => match local_command {
LocalSubCmd::Join {
build,
count,
enable_metrics_server,
faucet_path,
faucet_version,
interval,
metrics_port,
node_path,
node_port,
node_version,
log_format,
owner,
owner_prefix,
peers,
rpc_port,
rewards_address,
evm_network,
skip_validation: _,
} => {
let evm_network = if let Some(evm_network) = evm_network {
Some(evm_network.try_into()?)
} else {
None
};
cmd::local::join(
build,
count,
enable_metrics_server,
faucet_path,
faucet_version,
interval,
metrics_port,
node_path,
node_port,
node_version,
log_format,
owner,
owner_prefix,
peers,
rpc_port,
rewards_address,
evm_network,
true,
verbosity,
)
.await
}
LocalSubCmd::Kill { keep_directories } => cmd::local::kill(keep_directories, verbosity),
LocalSubCmd::Run {
build,
clean,
count,
enable_metrics_server,
faucet_path,
faucet_version,
interval,
log_format,
metrics_port,
node_path,
node_port,
node_version,
owner,
owner_prefix,
rpc_port,
rewards_address,
evm_network,
skip_validation: _,
} => {
let evm_network = if let Some(evm_network) = evm_network {
Some(evm_network.try_into()?)
} else {
None
};
cmd::local::run(
build,
clean,
count,
enable_metrics_server,
faucet_path,
faucet_version,
interval,
metrics_port,
node_path,
node_port,
node_version,
log_format,
owner,
owner_prefix,
rpc_port,
rewards_address,
evm_network,
true,
verbosity,
)
.await
}
LocalSubCmd::Status {
details,
fail,
json,
} => cmd::local::status(details, fail, json).await,
},
Some(SubCmd::NatDetection(NatDetectionSubCmd::Run {
path,
servers,
url,
version,
})) => {
cmd::nat_detection::run_nat_detection(servers, true, path, url, version, verbosity)
.await
}
Some(SubCmd::Remove {
keep_directories,
peer_id: peer_ids,
service_name: service_names,
}) => cmd::node::remove(keep_directories, peer_ids, service_names, verbosity).await,
Some(SubCmd::Reset { force }) => cmd::node::reset(force, verbosity).await,
Some(SubCmd::Start {
connection_timeout,
interval,
peer_id: peer_ids,
service_name: service_names,
}) => {
cmd::node::start(
connection_timeout,
interval,
peer_ids,
service_names,
verbosity,
)
.await
}
Some(SubCmd::Status {
details,
fail,
json,
}) => cmd::node::status(details, fail, json).await,
Some(SubCmd::Stop {
interval,
peer_id: peer_ids,
service_name: service_names,
}) => cmd::node::stop(interval, peer_ids, service_names, verbosity).await,
Some(SubCmd::Upgrade {
connection_timeout,
do_not_start,
force,
interval,
path,
peer_id: peer_ids,
service_name: service_names,
env_variables: provided_env_variable,
url,
version,
}) => {
cmd::node::upgrade(
connection_timeout,
do_not_start,
path,
force,
interval,
peer_ids,
provided_env_variable,
service_names,
url,
version,
verbosity,
)
.await
}
None => Ok(()),
}
}
fn get_log_builder(level: Level) -> Result<LogBuilder> {
let logging_targets = vec![
("evmlib".to_string(), level),
("evm_testnet".to_string(), level),
("sn_peers_acquisition".to_string(), level),
("sn_node_manager".to_string(), level),
("safenode_manager".to_string(), level),
("safenodemand".to_string(), level),
("sn_service_management".to_string(), level),
];
let mut log_builder = LogBuilder::new(logging_targets);
log_builder.output_dest(sn_logging::LogOutputDest::Stderr);
log_builder.print_updates_to_stdout(false);
Ok(log_builder)
}
// Since delimiter is on, we get element of the csv and not the entire csv.
fn parse_environment_variables(env_var: &str) -> Result<(String, String)> {
let parts: Vec<&str> = env_var.splitn(2, '=').collect();
if parts.len() != 2 {
return Err(eyre!(
"Environment variable must be in the format KEY=VALUE or KEY=INNER_KEY=VALUE.\nMultiple key-value pairs can be given with a comma between them."
));
}
Ok((parts[0].to_string(), parts[1].to_string()))
}
#[cfg(windows)]
async fn configure_winsw(verbosity: VerbosityLevel) -> Result<()> {
use sn_node_manager::config::get_node_manager_path;
// If the node manager was installed using `safeup`, it would have put the winsw.exe binary at
// `C:\Users\<username>\safe\winsw.exe`, sitting it alongside the other safe-related binaries.
//
// However, if the node manager has been obtained by other means, we can put winsw.exe
// alongside the directory where the services are defined. This prevents creation of what would
// seem like a random `safe` directory in the user's home directory.
let safeup_winsw_path = dirs_next::home_dir()
.ok_or_else(|| eyre!("Could not obtain user home directory"))?
.join("safe")
.join("winsw.exe");
if safeup_winsw_path.exists() {
sn_node_manager::helpers::configure_winsw(&safeup_winsw_path, verbosity).await?;
} else {
sn_node_manager::helpers::configure_winsw(
&get_node_manager_path()?.join("winsw.exe"),
verbosity,
)
.await?;
}
Ok(())
}
#[cfg(not(windows))]
async fn configure_winsw(_verbosity: VerbosityLevel) -> Result<()> {
Ok(())
}