767173cec2
Update 4.2.8p14 --> 4.2.8p15 Summary: Systems that use a CMAC algorithm in ntp.keys will not release a bit of memory on each packet that uses a CMAC keyid, eventually causing ntpd to run out of memory and fail. The CMAC cleanup from https://bugs.ntp.org/3447, part of ntp-4.2.8p11, introduced a bug whereby the CMAC data structure was no longer completely removed. MFC after: 3 days Security: NTP Bug 3661
74 lines
2.1 KiB
Plaintext
74 lines
2.1 KiB
Plaintext
# EDIT THIS FILE WITH CAUTION (plot_summary-opts)
|
|
#
|
|
# It has been AutoGen-ed June 23, 2020 at 02:21:46 AM by AutoGen 5.18.5
|
|
# From the definitions plot_summary-opts.def
|
|
# and the template file perlopt
|
|
|
|
use Getopt::Long qw(GetOptionsFromArray);
|
|
Getopt::Long::Configure(qw(no_auto_abbrev no_ignore_case_always));
|
|
|
|
my $usage;
|
|
|
|
sub usage {
|
|
my ($ret) = @_;
|
|
print STDERR $usage;
|
|
exit $ret;
|
|
}
|
|
|
|
sub paged_usage {
|
|
my ($ret) = @_;
|
|
my $pager = $ENV{PAGER} || '(less || more)';
|
|
|
|
open STDOUT, "| $pager" or die "Can't fork a pager: $!";
|
|
print $usage;
|
|
|
|
exit $ret;
|
|
}
|
|
|
|
sub processOptions {
|
|
my $args = shift;
|
|
|
|
my $opts = {
|
|
'directory' => '/tmp',
|
|
'identifier' => '',
|
|
'offset-limit' => '0.128',
|
|
'peer' => [],
|
|
'plot-term' => '',
|
|
'output-file' => '',
|
|
'dont-wait' => '',
|
|
'help' => '', 'more-help' => ''
|
|
};
|
|
my $argument = '';
|
|
my $ret = GetOptionsFromArray($args, $opts, (
|
|
'directory=s', 'identifier=s', 'offset-limit=f',
|
|
'peer=s', 'plot-term=s', 'output-file=s',
|
|
'dont-wait',
|
|
'help|?', 'more-help'));
|
|
|
|
$usage = <<'USAGE';
|
|
plot_summary - plot statistics generated by summary script - Ver. 4.2.8p15
|
|
USAGE: plot_summary [ -<flag> [<val>] | --<name>[{=| }<val>] ]...
|
|
|
|
--directory=str Where the summary files are
|
|
--identifier=str Origin of the data
|
|
--offset-limit=float Limit of absolute offset
|
|
--peer=str Peers to generate plots for
|
|
- may appear multiple times
|
|
--plot-term=str Gnuplot terminal
|
|
--output-file=str Output file
|
|
--dont-wait Don't wait for keystroke between plots
|
|
-?, --help Display usage information and exit
|
|
--more-help Pass the extended usage text through a pager
|
|
|
|
Options are specified by doubled hyphens and their name or by a single
|
|
hyphen and the flag character.
|
|
USAGE
|
|
|
|
usage(0) if $opts->{'help'};
|
|
paged_usage(0) if $opts->{'more-help'};
|
|
$_[0] = $opts;
|
|
return $ret;
|
|
}
|
|
|
|
END { close STDOUT };
|