]>
git.refcnt.org Git - distdns.git/blob - client.pl
86ff3d94ab808925b93822e0cd18b06be820f2bb
3 # Copyright (c) 2013 Michel Ketterle, Steven Schubiger
5 # This file is part of distdns.
7 # distdns is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # distdns is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with distdns. If not, see <http://www.gnu.org/licenses/>.
22 use constant false
=> 0;
25 use Digest
::MD5
qw(md5_hex);
27 use File
::Spec
::Functions
qw(catfile rel2abs);
29 use Getopt::Long qw(:config no_auto_abbrev no_ignore_case);
30 use JSON
qw(decode_json);
32 use Sys
::Hostname
qw(hostname);
37 my $conf_file = catfile
($Bin, 'client.conf');
43 -d, --debug server debugging
44 -h, --help this help screen
45 -i, --init initialize session data
51 GetOptions
(\
%opts, qw(d|debug h|help i|init)) or usage
();
54 my $config = Config
::Tiny
->new;
55 $config = Config
::Tiny
->read($conf_file);
57 my $get_config_opts = sub
59 my ($section, $options) = @_;
61 die "$0: Section $section missing in $conf_file\n" unless exists $config->{$section};
64 @options{@
$options} = @
{$config->{$section}}{@
$options};
66 foreach my $option (@
$options) {
67 die "$0: Option $option not set in $conf_file\n" unless defined $options{$option} && length $options{$option};
70 return @options{@
$options};
73 my ($hosts_file, $session_file) = map rel2abs
($_, $Bin), $get_config_opts->('path', [ qw(hosts_file session_file) ]);
75 my ($server_url) = $get_config_opts->('url', [ qw(server_url) ]);
76 my ($netz, $name) = $get_config_opts->('data', [ qw(netz name) ]);
78 my $save_session = sub
82 open(my $fh, '>', $session_file) or die "$0: Cannot open client-side $session_file for writing: $!\n";
83 print {$fh} "$session\n";
89 open(my $fh, '<', $session_file) or die "$0: Cannot open client-side $session_file for reading: $!\nPerhaps try running --init\n";
90 my $session = do { local $/; <$fh> };
97 my $session = $opts{i
} ?
substr(md5_hex
(md5_hex
(time() . {} . rand() . $$)), 0, 32) : $get_session->();
103 debug
=> $opts{d
} || false
,
104 init
=> $opts{i
} || false
,
108 my $ua = LWP
::UserAgent
->new;
110 my $response = $ua->post($server_url, \
%params);
112 if ($response->is_success) {
116 $data = decode_json
($response->decoded_content);
119 die "$0: $data->{error}" if defined $data->{error
};
121 $save_session->($session) if $opts{i
};
124 foreach my $entry (@
{$data->{entries
}}) {
125 my $host = "$entry->{ip}\t" . join '.', @
$entry{qw(name pc netz)};
126 push @
{$list{$entry->{netz
}}}, $host;
129 my $o = tie
my @hosts, 'Tie::File', $hosts_file or die "$0: Cannot tie $hosts_file: $!\n";
132 foreach my $network (keys %list) {
134 for (my $i = 0; $i < @hosts; $i++) {
135 if ($hosts[$i] =~ /^\#$network\#$/i) {
136 $indexes{start
} = $i;
138 elsif (exists $indexes{start
} && $hosts[$i] =~ /^\#\/$network\#
$/i
) {
140 my $count = ($indexes{end
} - $indexes{start
} > 1)
141 ?
$indexes{end
} - $indexes{start
} - 1
143 splice @hosts, $indexes{start
} + 1, $count, @
{$list{$network}};
153 warn $response->status_line, "\n";