ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-MP/bin/aemp
Revision: 1.55
Committed: Thu Mar 8 21:37:51 2012 UTC (12 years, 2 months ago) by root
Branch: MAIN
Changes since 1.54: +6 -5 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/opt/bin/perl
2
3 =head1 NAME
4
5 aemp - AnyEvent:MP utility
6
7 =head1 SYNOPSIS
8
9 aemp command args...
10
11 # protocol commands
12 aemp snd <port> <arg...> # send a message
13 aemp mon <port> # wait till port is killed
14 aemp cal <port> <arg...> # send message, append reply
15 aemp eval <node> <expr...> # evaluate expression
16 aemp shell [<node>] # run an interactive shell
17 aemp trace <node> # trace the network topology
18
19 # run a node
20 aemp run configure_args... # run a node
21 aemp restart <node> # restart a node if running under watchdog
22
23 # node configuration: node ID
24 aemp setnodeid <nodeid> # configure the real node id
25 aemp delnodeid # reset node id to default (= inherit)
26
27 # node configuration: authentication
28 aemp gensecret # generate a random shared secret
29 aemp setsecret <secret> # set the shared secret
30 aemp delsecret # remove the secret (= inherit)
31 aemp gencert # generate a random certificate
32 aemp setcert <file> # set a certificate (key.pem + certificate.pem)
33 aemp delcert # remove certificate (= inherit)
34
35 # node configuration: seed addresses for bootstrapping
36 aemp setseeds <host:port>,... # set seeds
37 aemp delseeds # clear all seeds (= inherit)
38 aemp addseed <host:port> # add a seed
39 aemp delseed <host:port> # remove seed
40
41 # node configuration: bind addresses
42 aemp setbinds <host:port>,... # set binds
43 aemp delbinds # clear all binds (= inherit)
44 aemp addbind <host:port> # add a bind address
45 aemp delbind <host:port> # remove a bind address
46
47 # node configuration: services
48 aemp setservices initfunc,... # set service functions
49 aemp delservices # clear all services (= inherit)
50 aemp addservice <initfunc> # add an instance of a service
51 aemp delservice <initfunc> # delete one instance of a service
52
53 # profile management
54 aemp profile <name> <command>... # apply command to profile only
55 aemp setparent <name> # specify a parent profile
56 aemp delparent # clear parent again
57 aemp delprofile <name> # eradicate the named profile
58 aemp showprofile <name> # display given profile
59 aemp showconfig <name> ... # display effective config
60
61 # node configuration: low-level protocol
62 aemp [set|del]secure <boolean>
63 aemp [set|del]monitor_timeout <seconds>
64 aemp [set|del]connect_interval <seconds>
65 aemp [set|del]framing_format [array]
66 aemp [set|del]auth_offer [array]
67 aemp [set|del]auth_accept [array]
68 aemp [set|del]autocork <boolean>
69 aemp [set|del]nodelay <boolean>
70
71 =head1 DESCRIPTION
72
73 With aemp you can configure various aspects of AnyEvent::MP and its
74 protocol, send various messages and even run a node.
75
76 The F<aemp> utility works like F<cvs>, F<svn> or other commands: the first
77 argument defines which operation (subcommand) is requested, after which
78 arguments for this operation are expected. When a subcommand does not eat
79 all remaining arguments, the remaining arguments will again be interpreted
80 as subcommand and so on.
81
82 This means you can chain multiple commands, which is handy for profile
83 configuration, e.g.:
84
85 aemp gensecret profile xyzzy binds 4040,4041 nodeid anon/
86
87 Please note that all C<setxxx> subcommands have an alias without the
88 C<set> prefix.
89
90 All configuration data is stored in a human-readable (JSON) config file
91 stored in F<~/.perl-anyevent-mp> (or F<%appdata%/perl-anyevent-mp> on
92 loser systems, or wherever C<$ENV{PERL_ANYEVENT_MP_RC}> points to). Feel
93 free to look at it or edit it, the format is relatively simple.
94
95 =head2 SPECIFYING ARGUMENTS
96
97 Arguments can be specified just as with any other shell command, with a
98 few special cases:
99
100 If the I<first> argument starts with a literal C<[>-character, then it is
101 interpreted as a UTF-8 encoded JSON text. The resulting array replaces all
102 arguments.
103
104 Otherwise, if I<any> argument starts with one of C<[>, C<{> or C<">, then
105 it is interpreted as UTF-8 encoded JSON text (or a single value in case of
106 C<">), and the resulting reference or scalar replaces the argument.
107
108 This allows you, for example, to specify binds in F<aemp run> (using POSIX
109 shell syntax):
110
111 aemp run binds '["*:4040"]'
112
113 =head2 RUNNING A NODE
114
115 This can be used to run a node - together with some services, this makes
116 it unnecessary to write any wrapper programs.
117
118 =over 4
119
120 =item run <configure_args>...
121
122 Runs a node by calling C<AnyEvent::MP::Kernel::configure> with the given
123 arguments. The node runs under L<AnyEvent::Watchdog>, can be restarted
124 (and autorestarted, see the L<AnyEvent::Watchdog> manual). A very common
125 invocation is to just specify a profile using the profile name
126
127 aemp run database-backend
128
129 ... but you can use most arguments that C<configure> understands:
130
131 aemp run nodeid mynode2 profile someprofile
132
133 Care has been taken to load (almost) no modules other than
134 L<AnyEvent::Watchdog> and the modules it loads, so everything (including
135 the L<AnyEvent::MP> modules themselves) will be freshly loaded on restart,
136 which makes upgrading everything except the perl binary easy.
137
138 =item restart <node>
139
140 Restarts the node using C<AnyEvent::Watchdog::Util::restart>. This works
141 for nodes started by C<aemp run>, but also for any other node that uses
142 L<AnyEvent::Watchdog>.
143
144 =back
145
146 =head2 PROTOCOL COMMANDS
147
148 These commands actually communicate with other nodes. They all use a node
149 profile name of C<aemp> (specifying a default node ID of C<anon/> and a
150 binds list containing C<*:*> only).
151
152 They all use a timeout of five seconds, after which they give up.
153
154 =over 4
155
156 =item snd <port> <arguments...>
157
158 Simply send a message to the given port - where you get the port ID from
159 is your problem.
160
161 Exits after ensuring that the message has been delivered to its node.
162
163 Most useful to take advantage of some undocumented functionality inside
164 nodes, such as node ports being able to call any method:
165
166 aemp snd doomed AnyEvent::Watchdog::restart 1
167
168 =item cal <port> <arg...>
169
170 Like F<aemp cal>: appends a local reply port to the message and waits for
171 a message to it.
172
173 Any return values will be JSON-encoded and printed separated by commas
174 (kind of like a JSON array without []-brackets).
175
176 Example: ask the (undocumented) time service of a node for its current
177 time.
178
179 aemp cal mynode time
180
181 =item mon <port>
182
183 Monitors the port and exits when it's monitorign callback is called. Most
184 useful to monitor node ports.
185
186 Example: monitor some node.
187
188 aemp mon doomed
189
190 =item eval <node> <expr...>
191
192 Joins all remaining arguments into a string and evaluates it on the given
193 node. Return values are handled as with F<aemp cal>.
194
195 Example: find the unix process ID of the node called posicks.
196
197 aemp eval posicks '$$'
198
199 =item trace <node>
200
201 Asks the given node for all currently connected nodes, then asks those
202 nodes for the same, thus tracing all node connections.
203
204 =back
205
206 =head2 CONFIGURATION/NODE ID/SECRET/CERTIFICATE
207
208 These commands deal with rather basic settings, the node ID, the shared
209 secret and the TLS certificate.
210
211 =over 4
212
213 =item setnodeid <nodeid>
214
215 Set the node ID to the given string. If it ends with a slash (C</>), then
216 a random string is appended to make it unique.
217
218 If no nodeid is specified in any profile, then the profile name, plus
219 appended slash, is used.
220
221 =item delnodeid
222
223 Removes the node ID again, which means it is inherited again from it's
224 parent profile, or stays unset.
225
226 =item gensecret
227
228 Generates a random shared secret (currently 1071 bits) and sets it. The
229 shared secret is used to authenticate nodes to each other when TLS is not
230 required.
231
232 =item setsecret <secret>
233
234 Sets the shared secret to the given string, which can be anything.
235
236 =item delsecret
237
238 Removes the shared secret again, which means it is inherited again from
239 it's parent profile, or stays unset.
240
241 =item gencert
242
243 Generates a self-signed certificate and key, and sets it. This works
244 similarly to a shared secret: when all nodes have it, TLS will be used to
245 authenticate and encrypt all traffic.
246
247 =item setcert <file>
248
249 Set a node certificate (and optionally any CA certificates) from the given
250 file. The file must contain the key, followed by the certificate, followed
251 by any CA certificates you want to trust, all in PEM format.
252
253 See L<AnyEvent::TLS> for some more details - this sets the C<cert> and
254 C<ca_cert> options.
255
256 =item delcert
257
258 Removes the certificate(s) again, which means it is inherited again from
259 it's parent profile, or stays unset.
260
261 =back
262
263 =head2 CONFIGURATION/SEEDS
264
265 To discover the network you have to specify some seed addresses, which are
266 basically C<host:port> pairs where you expect some long-running nodes. It
267 does no harm to have a node as its own seed (they will eventually be
268 ignored).
269
270 =over 4
271
272 =item setseeds <host:port>,...
273
274 Sets or replaces the list of seeds, which must be specified as a
275 comma-separated list of C<host:port> pairs. The C<host> can be a hostname,
276 an IP address, or C<*> to signify all local host addresses (which makes
277 little sense for seeds, outside some examples, but a lot of sense for
278 binds).
279
280 An empty list is allowed.
281
282 Example: use C<doomed> with default port as only seednode.
283
284 aemp setseeds doomed
285
286 =item delseeds
287
288 Removes the seed list again, which means it is inherited again from it's
289 parent profile, or stays unset.
290
291 =item addseed <host:port>
292
293 Adds a single seed address.
294
295 =item delseed <host:port>
296
297 Deletes the given seed address, if it exists.
298
299 =back
300
301 =head2 CONFIGURATION/BINDS
302
303 To be able to be reached from other nodes, a node must I<bind> itself
304 to some listening socket(s). The list of these can either bs specified
305 manually, or AnyEvent::MP can guess them. Nodes without any binds are
306 possible to some extent.
307
308 =over 4
309
310 =item setbinds <host:port>,...
311
312 Sets the list of bind addresses explicitly - see the F<aemp setseeds>
313 command for the exact syntax. In addition, a value of C<*> for the port,
314 or not specifying a port, means to use a dynamically-assigned port.
315
316 Note that the C<*>, C<*:*> or C<*:port> patterns are very useful here.
317
318 Example: bind on a ephemeral port on all local interfaces.
319
320 aemp setbinds "*"
321
322 Example: bind on a random port on all local interfaces.
323
324 aemp setbinds "*:*"
325
326 Example: resolve "doomed.mydomain" and try to bind on port C<4040> of all
327 IP addressess returned.
328
329 aep setbinds doomed.mydomain:4040
330
331 =item delbinds
332
333 Removes the bind list again, which means it is inherited again from it's
334 parent profile, or stays unset.
335
336 =item addbind <host:port>
337
338 Adds a single bind address.
339
340 =item delbind <host:port>
341
342 Deletes the given bind address, if it exists.
343
344 =back
345
346 =head2 CONFIGURATION/SERVICES
347
348 Services are modules (or functions) that are automatically loaded (or
349 executed) when a node starts. They are especially useful when used in
350 conjunction with F<aemp run>, to configure which services a node should
351 run.
352
353 Despite the daunting name, services really I<are> nothing more than a
354 module name or a function name with arguments. The "service" aspect comes
355 only from the behaviour of the module or function, which is supposed to
356 implement, well, some kind of service for the node, network etc.
357
358 Instead of writing a standalone program for each different node type in
359 your network, you can simply put your code into a module, and then let the
360 configuration decide which node runs which "services". This also makes it
361 easy to combine multiple different services within the same node.
362
363 =over 4
364
365 =item setservices <initfunc>...
366
367 Sets or replaces the list of services, which must be specified as a
368 comma-separated list or a JSON array.
369
370 Each string entry in the list is interpreted as either a module name to
371 load (when it ends with C<::>) or a function to call (all other cases).
372
373 Each entry which is an array itself (you need to use JSON format to
374 specify those) is interpreted as a function name and the arguments to
375 pass.
376
377 The algorithm to find the function is the same as used for C<<
378 L<AnyEvent::MP>::spawn >>.
379
380 Example: run the globa service (which runs anyway, but this doesn't hurt).
381
382 aemp setservices AnyEvent::MP::Global::
383
384 Example: call the mymod::myfun function with arguments 1, 2 and 3.
385
386 aemp setservices '[["mymod::myfun", 1,2,3]]'
387
388 =item delservices
389
390 Removes the service list again, which means it is inherited again from
391 it's parent profile, or stays unset.
392
393 =item addservice <initfunc>
394
395 Adds a single service.
396
397 =item delservice <initfunc>
398
399 Deletes the given service, if it exists.
400
401 =back
402
403 =head2 CONFIGURATION/PROFILE MANAGEMENT
404
405 All the above configuration functions by default affect the I<global
406 default configuration>, which is basically used to augment every profile
407 and node configuration.
408
409 =over 4
410
411 =item profile <name> ...
412
413 This subcommand makes the following subcommands act only on a specific
414 named profile, instead of on the global default. The profile is created if
415 necessary.
416
417 Example: create a C<server> profile, give it a random node name, some seed
418 nodes and bind it on an unspecified port on all local interfaces. You
419 should add some services then and run the node...
420
421 aemp profile server nodeid anon/ seeds doomed,10.0.0.2:5000 binds "*:*"
422
423 =item delprofile <name>
424
425 Deletes the profile of the given name.
426
427 =item setparent <name>
428
429 Sets the parent profile to use - values not specified in a profile will be
430 taken from the parent profile (even recursively, with the global default
431 config being the default parent). This is useful to configure profile
432 I<classes> and then to inherit from them for individual nodes.
433
434 Note that you can specify circular parent chains and even a parent for the
435 global configuration. Neither will do you any good, however.
436
437 Example: inherit all values not specified in the C<doomed> profile from
438 the C<server> profile.
439
440 aemp profile doomed setparent server
441
442 =item delparent
443
444 Removes the parent again from the profile, if any was set, so the profile
445 inherits directly from the global default config again.
446
447 =item showprofile <name>
448
449 Shows the values of the given profile, and only those, no inherited
450 values.
451
452 =item showconfig <name> <key value...>
453
454 Shows the I<effective> config, i.e. the values as used by a node started
455 with the given profile name. Any additional key-value pairs specified
456 augment the configuration, just as with C<configure>.
457
458 If all arguments are omitted, show the global default config.
459
460 =back
461
462 =head2 LOW-LEVEL TRANSPORT PROTOCOL
463
464 The low-level transport protocol betwene two nodes also has a number of
465 configurable options, most of which should not be touched unless you know
466 what you are doing.
467
468 =over 4
469
470 =item [set|del]secure <boolean>
471
472 Normally, nodes allow anything to be done to them by remote nodes,
473 including remotely-triggered execution of code.
474
475 Sometimes a more secure mode is desired - this can be achieved by setting
476 the secure option to a true value.
477
478 When secure mode is enabled, then remote nodes cannot execute code
479 locally, at least not via the normal node protocol. All other messages are
480 still allowed. This means remote nodes can monitor, kill or local ports
481 (port names can be easily guessed).
482
483 At the moment, this affects C<snd_on>, C<eval_on> and C<spawn>
484 functionality.
485
486 The C<configure> function additionally allows you to specify a callback
487 that can grant or suppress such requests on a per-node basis.
488
489 =item [set|del]monitor_timeout <seconds>
490
491 Sets the default monitor timeout, that is, when a connection to a node
492 cannot be established within this many seconds, the node is declared
493 unreachable and all monitors will fire.
494
495 C<30> seconds are usually a good time span for this.
496
497 =item [set|del]connect_interval <seconds>
498
499 When a connection cannot be established successfully within this many
500 seconds, try the next transport address (e.g. the next IP address). If
501 your nodes have a lot of transports, you might have to set this to a low
502 value so that they will actually all be tried within the monitor timeout
503 interval.
504
505 C<2> is usually a good value, unless you live in new zealand.
506
507 =item [set|del]framing_format [array]
508
509 Configures the list of framing formats offered to the other side. This is
510 simply a list of formatted read/write types used with L<AnyEvent::Handle>,
511 in order of decreasing preference.
512
513 Nodes support both C<json> and C<storable> framing formats for data
514 packets out of the box, and usually choose C<json> because it is first in
515 the list.
516
517 Example: prefer the C<My::Personal::Format> framing format over JSON over
518 Storable.
519
520 aemp setframing_format '["My::Personal::Format", "json", "storable"]'
521
522 =item [set|del]auth_offer [array]
523
524 Configures the list of authentication types that the node offers to the
525 other side as acceptable, in order of decreasing preference. Only auth
526 methods that the node can actually support will be offered.
527
528 The default is '["tls_md6_64_256", "hmac_md6_64_256"]' and is usually good
529 enough.
530
531 =item [set|del]auth_accept [array]
532
533 Configures the list of authentication types that remote nodes can use to
534 authenticate, in order of decreasing preference.
535
536 The default is '["tls_md6_64_256", "hmac_md6_64_256", "tls_anon",
537 "cleartext"]' and is usually good enough.
538
539 =item [set|del]autocork <boolean>
540
541 Sets the default C<autocork> option value for the L<AnyEvent::Handle>
542 object used by transports. By default, autocorking is off.
543
544 =item [set|del]nodelay <boolean>
545
546 Sets the default C<nodelay> option value for the L<AnyEvent::Handle>
547 object used by transports. By default, nodelay is on.
548
549 =back
550
551 =cut
552
553 use common::sense;
554
555 # should come before anything else, so all modules
556 # will be loaded on each restart
557 BEGIN {
558 if (@ARGV == 1 && $ARGV[0] =~ /^\[/) {
559 require JSON::XS;
560 @ARGV = @{ JSON::XS->new->utf8->decode (shift) };
561 } else {
562 for (@ARGV) {
563 if (/^[\[\{\"]/) {
564 require JSON::XS;
565 $_ = JSON::XS->new->utf8->allow_nonref->decode ($_);
566 }
567 }
568 }
569
570 if ($ARGV[0] eq "run") {
571 shift;
572
573 # d'oh
574 require AnyEvent::Watchdog;
575 # only now can we load additional modules
576
577 require AnyEvent;
578
579 require AnyEvent::Watchdog::Util;
580 AnyEvent::Watchdog::Util::autorestart (1);
581 AnyEvent::Watchdog::Util::heartbeat (300);
582
583 require AnyEvent::MP::Kernel;
584 AnyEvent::MP::Kernel::configure (@ARGV);
585
586 AnyEvent::detect () eq "AnyEvent::Impl::EV"
587 ? EV::loop ()
588 : AE::cv ()->recv;
589 }
590 }
591
592 use Carp ();
593
594 use JSON::XS;
595
596 use AnyEvent;
597 use AnyEvent::Util;
598
599 use AnyEvent::MP;
600 use AnyEvent::MP::Config;
601
602 sub my_run_cmd {
603 my ($cmd) = @_;
604
605 my $cv = &run_cmd;
606 my $status = $cv->recv;
607
608 $status
609 and die "@$cmd: command failed with exit status $status.";
610 }
611
612 sub gen_cert {
613 my_run_cmd [qw(openssl req
614 -new -nodes -x509 -days 3650
615 -newkey rsa:2048 -keyout /dev/fd/3
616 -batch -subj /CN=AnyEvent::MP
617 )],
618 "<", "/dev/null",
619 ">" , \my $cert,
620 "3>", \my $key,
621 "2>", "/dev/null";
622
623 "$cert$key"
624 }
625
626 sub init {
627 configure profile => "aemp", nodeid => "aemp/%n/%u";
628 }
629
630 our $cfg = AnyEvent::MP::Config::config;
631 our $profile = $cfg;
632
633 sub trace {
634 my ($node) = @_;
635 my $cv = AE::cv;
636 my %seen;
637
638 my $to = AE::timer 15, 0, sub { exit 1 };
639
640 init;
641
642 my $reply = port {
643 my ($node, undef, @neigh) = @_;
644
645 @neigh = grep $_ ne $NODE, @neigh;
646
647 print $node, " -> ", (join " ", @neigh), "\n";
648
649 for (@neigh) {
650 unless ($seen{$_}++) {
651 $cv->begin;
652 AnyEvent::MP::Kernel::eval_on $_, "AnyEvent::MP::Kernel::up_nodes" => $SELF => $_;
653 }
654 }
655
656 $cv->end;
657 };
658
659 $cv->begin;
660 snd $reply, $node => undef, AnyEvent::MP::Kernel::up_nodes;
661
662 $cv->recv;
663 }
664
665 sub shell {
666 init;
667
668 my $node = shift @ARGV || $NODE;
669 $| = 1;
670
671 print <<EOF;
672 Entering interactive shell - no commandline editing of course (use rlfe etc.).
673
674 \= display a list of nodes
675 \=name switch to another node
676 package P switch to package P when evaluating
677 \$ECHO contains the name of a port that echos everything sent to it
678
679 EOF
680 my $pkg = "AnyEvent::MP::Kernel";
681 my $cv = AE::cv;
682 my $echo = port {
683 print "\n ECHO<$AnyEvent::MP::Kernel::SRCNODE->{id}> ", JSON::XS::encode_json \@_, "\n$node $pkg> ";
684 };
685 print "$node $pkg> ";
686 my $t = AE::io *STDIN, 0, sub {
687 chomp (my $line = <STDIN>);
688
689 if ($line =~ s/^=//) {
690 if (length $line) {
691 $node = $line;
692 } else {
693 print +(join " ", AnyEvent::MP::Kernel::up_nodes), "\n";
694 }
695 } elsif ($line =~ /^\s*package\s+(\S+)\s*;?\s*$/) {
696 $pkg = $1;
697 } elsif ($line =~ /\S/) {
698 my $time = AE::time;
699 AnyEvent::MP::Kernel::eval_on
700 $node,
701 "package $pkg; my \$ECHO = '$echo'; $line",
702 port {
703 kil $SELF;
704
705 my ($err, @res) = @_;
706
707 $time = AE::time - $time;
708
709 print "\n $node: $line\n";
710 if (length $err) {
711 print " $err @res";
712 } else {
713 print " ", JSON::XS::encode_json \@res;
714 }
715 printf "\n %0.3fs\n", $time;
716 print "$node $pkg> ";
717 }
718 ;
719 }
720
721 print "$node $pkg> ";
722 };
723 $cv->recv;
724 }
725
726 sub node_eval {
727 my ($node, $expr) = @_;
728
729 init;
730
731 my $cv = AE::cv;
732 my $to = AE::timer 5, 0, sub { exit 1 };
733 AnyEvent::MP::Kernel::eval_on $node, $expr, port { &$cv };
734 mon $node, $cv;
735
736 my ($err, @res) = $cv->recv;
737
738 die "$err @res" if length $err;
739
740 print +(substr JSON::XS->new->encode (\@res), 1, -1), "\n";
741 }
742
743 sub docmd;
744
745 our %CMD = (
746 snd => sub {
747 my $port = shift @ARGV;
748 init;
749
750 snd $port, @ARGV; @ARGV = ();
751
752 my $cv = AE::cv;
753 my $to = AE::timer 5, 0, sub { exit 1 };
754 mon $port, $cv;
755 my $reply = port sub { &$cv };
756 snd node_of $port, snd => $reply, "message sent successfully";
757
758 print join " ", $cv->recv, "\n";
759 },
760
761 cal => sub {
762 my $port = shift @ARGV;
763 init;
764
765 my $cv = AE::cv;
766 cal $port, @ARGV, sub { &$cv }; @ARGV = ();
767
768 print +(substr JSON::XS->new->encode ([$cv->recv]), 1, -1), "\n";
769 },
770
771 mon => sub {
772 my $port = shift @ARGV;
773 init;
774
775 mon $port, my $cv = AE::cv;
776 print join " ", $cv->recv, "\n";
777 },
778
779 eval => sub {
780 my $node = node_of shift @ARGV;
781 my $expr = join " ", @ARGV; @ARGV = ();
782 node_eval $node, $expr;
783 },
784
785 shell => \&shell,
786
787 trace => sub {
788 @ARGV >= 1
789 or die "node id missing\n";
790
791 trace shift @ARGV;
792 },
793 restart => sub {
794 my $node = node_of shift @ARGV;
795 node_eval $node, 'my $w; $w = AE::idle sub { '
796 . 'undef $w; '
797 . 'use AnyEvent::Watchdog::Util ();'
798 . 'AnyEvent::Watchdog::Util::restart'
799 . '}; ()';
800 },
801
802 setnodeid => sub {
803 @ARGV >= 1
804 or die "shared secret missing\n";
805
806 $profile->{nodeid} = shift @ARGV;
807 ++$cfg->{dirty};
808 },
809 delnodeid => sub {
810 delete $profile->{nodeid};
811 ++$cfg->{dirty};
812 },
813
814 setsecret => sub {
815 @ARGV >= 1
816 or die "shared secret missing\n";
817
818 $profile->{secret} = shift @ARGV;
819 ++$cfg->{dirty};
820 },
821 gensecret => sub {
822 $profile->{secret} = AnyEvent::MP::Kernel::nonce62 180; # ~1071 bits
823 ++$cfg->{dirty};
824 },
825 delsecret => sub {
826 delete $profile->{secret};
827 ++$cfg->{dirty};
828 },
829
830 setcert => sub {
831 @ARGV >= 1
832 or die "key+certificate pem filename missing\n";
833
834 my $certfile = shift @ARGV;
835
836 open my $fh, "<", $certfile
837 or die "$certfile: $!";
838
839 local $/;
840 $profile->{cert} = <$fh>;
841 ++$cfg->{dirty};
842 },
843 gencert => sub {
844 $profile->{cert} = gen_cert;
845 ++$cfg->{dirty};
846 },
847 delcert => sub {
848 delete $profile->{cert};
849 ++$cfg->{dirty};
850 },
851
852 setbinds => sub {
853 @ARGV >= 1
854 or die "bind addresses missing\n";
855 my $list = shift @ARGV;
856 $profile->{binds} = ref $list ? $list : [split /,/, $list];
857 ++$cfg->{dirty};
858 },
859 delbinds => sub {
860 delete $profile->{binds};
861 ++$cfg->{dirty};
862 },
863 addbind => sub {
864 @ARGV >= 1
865 or die "bind address missing\n";
866 my $bind = shift @ARGV;
867
868 @{ $profile->{binds} } = grep $_ ne $bind, @{ $profile->{binds} };
869 push @{ $profile->{binds} }, $bind;
870 ++$cfg->{dirty};
871 },
872 delbind => sub {
873 @ARGV >= 1
874 or die "bind address missing\n";
875 my $bind = shift @ARGV;
876
877 @{ $profile->{binds} } = grep $_ ne $bind, @{ $profile->{binds} };
878 ++$cfg->{dirty};
879 },
880
881 setseeds => sub {
882 @ARGV >= 1
883 or die "seed addresses missing\n";
884 my $list = shift @ARGV;
885 $profile->{seeds} = ref $list ? $list : [split /,/, $list];
886 ++$cfg->{dirty};
887 },
888 delseeds => sub {
889 delete $profile->{seeds};
890 ++$cfg->{dirty};
891 },
892 addseed => sub {
893 @ARGV >= 1
894 or die "seed address missing\n";
895 my $seed = shift @ARGV;
896
897 @{ $profile->{seeds} } = grep $_ ne $seed, @{ $profile->{seeds} };
898 push @{ $profile->{seeds} }, $seed;
899 ++$cfg->{dirty};
900 },
901 delseed => sub {
902 @ARGV >= 1
903 or die "seed address missing\n";
904 my $seed = shift @ARGV;
905
906 @{ $profile->{seeds} } = grep $_ ne $seed, @{ $profile->{seeds} };
907 ++$cfg->{dirty};
908 },
909
910 setservices => sub {
911 @ARGV >= 1
912 or die "service specifications missing\n";
913 my $list = shift @ARGV;
914 $profile->{services} = ref $list ? $list : [split /,/, $list];
915 ++$cfg->{dirty};
916 },
917 delservices => sub {
918 delete $profile->{services};
919 ++$cfg->{dirty};
920 },
921 addservice => sub {
922 @ARGV >= 1
923 or die "service specification missing\n";
924 my $service = shift @ARGV;
925 push @{ $profile->{services} }, $service;
926 ++$cfg->{dirty};
927 },
928 delservice => sub {
929 @ARGV >= 1
930 or die "service specification missing\n";
931 my $service = shift @ARGV;
932 for (0 .. $#{ $profile->{services} }) {
933 next unless $profile->{services}[$_] eq $service;
934 splice @{ $profile->{services} }, $_, 1;
935 last;
936 }
937 ++$cfg->{dirty};
938 },
939
940 profile => sub {
941 @ARGV >= 1
942 or die "profile name is missing\n";
943 my $name = shift @ARGV;
944
945 $profile = $cfg->{profile}{$name} ||= {};
946 ++$cfg->{dirty};
947 },
948 delprofile => sub {
949 @ARGV >= 1
950 or die "profile name is missing\n";
951 my $name = shift @ARGV;
952
953 delete $cfg->{profile}{$name};
954 ++$cfg->{dirty};
955 },
956 setparent => sub {
957 @ARGV >= 1
958 or die "profile name is missing\n";
959
960 $profile->{parent} = shift @ARGV;
961 ++$cfg->{dirty};
962 },
963 delparent => sub {
964 delete $profile->{parent};
965 ++$cfg->{dirty};
966 },
967 showprofile => sub {
968 @ARGV >= 1
969 or die "profile name is missing\n";
970 my $name = shift @ARGV;
971
972 print JSON::XS->new->pretty->encode ($cfg->{profile}{$name} || {});
973 },
974 showconfig => sub {
975 my $name = @ARGV ? shift @ARGV : AnyEvent::MP::Kernel::nodename;
976
977 my $profile = AnyEvent::MP::Config::find_profile $name, @ARGV;
978 @ARGV = ();
979
980 # make it look nicer:
981 delete $profile->{profile};
982 delete $profile->{parent};
983
984 print JSON::XS->new->pretty->encode ($profile);
985 },
986
987 # undocumented
988 _resolve => sub {
989 print +(join ",", (AnyEvent::MP::Kernel::_resolve shift @ARGV)->recv), "\n";
990 },
991 );
992
993 for my $attr (qw(
994 monitor_timeout connect_interval framing_format auth_offer
995 auth_accept autocork nodelay secure
996 )) {
997 $CMD{"set$attr"} = sub {
998 @ARGV >= 1
999 or die "$attr value is missing\n";
1000
1001 $profile->{$attr} = shift @ARGV;
1002 ++$cfg->{dirty};
1003 };
1004 $CMD{"del$attr"} = sub {
1005 delete $profile->{$attr};
1006 ++$cfg->{dirty};
1007 };
1008 }
1009
1010 for (keys %CMD) {
1011 $CMD{$1} = $CMD{$_} if /^set(.*)$/;
1012 }
1013
1014 sub docmd {
1015 my $cmd = shift @ARGV;
1016
1017 $CMD{$cmd}
1018 or die "$cmd: no such aemp command (try perldoc aemp, or man aemp)";
1019
1020 $CMD{$cmd}();
1021 }
1022
1023 @ARGV
1024 or die "Usage: aemp subcommand ... (try perldoc aemp, or man aemp)\n";
1025
1026 docmd while @ARGV;
1027
1028