]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/scripts/setddns.pl
Merge branch 'master' of ssh://arne_f@git.ipfire.org/pub/git/ipfire-2.x
[people/pmueller/ipfire-2.x.git] / src / scripts / setddns.pl
1 #!/usr/bin/perl
2 #
3 # SmoothWall CGIs
4 #
5 # This code is distributed under the terms of the GPL
6 #
7 # (c) The SmoothWall Team
8 #
9 # $Id: setddns.pl,v 1.4.2.32 2006/02/07 01:29:47 franck78 Exp $
10 #
11
12 #close(STDIN);
13 #close(STDOUT);
14 #close(STDERR);
15
16 use strict;
17 use IO::Socket;
18 use Net::SSLeay;
19
20 require '/var/ipfire/general-functions.pl';
21
22 #Prototypes functions
23 sub encode_base64 ($;$);
24
25 my %settings;
26 my $filename = "${General::swroot}/ddns/config";
27 my $cachefile = "${General::swroot}/ddns/ipcache";
28 my $ipcache = 0;
29 my @current = ();
30
31 if (open(FILE, "$filename")) {
32 @current = <FILE>;
33 close(FILE);
34 unless(@current) {
35 exit 0;
36 }
37 } else {
38 &General::log('Dynamic DNS failure : unable to open config file.');
39 exit 0;
40 }
41
42 &General::readhash("${General::swroot}/ddns/settings", \%settings);
43
44 # ignore monthly update if not in minimize update mode
45 exit 0 if (($settings{'MINIMIZEUPDATES'} ne 'on') && ($ARGV[1] eq '-m'));
46
47 my $ip;
48 if (open(IP, "${General::swroot}/red/local-ipaddress")) {
49 $ip = <IP>;
50 close(IP);
51 chomp $ip;
52 } else {
53 &General::log('Dynamic DNS failure : unable to open local-ipaddress file.');
54 exit 0;
55 }
56
57 #If IP is reserved network, we are behind a router. May we ask for our real public IP ?
58 if ( &General::IpInSubnet ($ip,'10.0.0.0','255.0.0.0') ||
59 &General::IpInSubnet ($ip,'172.16.0.0','255.240.0.0') ||
60 &General::IpInSubnet ($ip,'192.168.0.0','255.255.0.0')) {
61 # We can, but are we authorized by GUI ?
62 if ($settings{'BEHINDROUTER'} eq 'FETCH_IP') {
63 if ($ARGV[0] eq '-f'){
64 $settings{'BEHINDROUTERWAITLOOP'} = -1; # When forced option, fectch PublicIP now
65 }
66
67 # Increment counter modulo 4. When it is zero, fetch ip else exit
68 # This divides by 4 the requests to the dyndns server.
69 $settings{'BEHINDROUTERWAITLOOP'} = ($settings{'BEHINDROUTERWAITLOOP'}+1) %4;
70 &General::writehash("${General::swroot}/ddns/settings", \%settings);
71 exit 0 if ( $settings{'BEHINDROUTERWAITLOOP'} ne 0 );
72 my $RealIP = &General::FetchPublicIp;
73 $ip = (&General::validip ($RealIP) ? $RealIP : 'unavailable');
74 &General::log ("Dynamic DNS public router IP is:$ip");
75 }
76 }
77
78 if ($ARGV[0] eq '-f') {
79 unlink ($cachefile); # next regular calls will try again if this force update fails.
80 } else {
81 open(IPCACHE, "$cachefile");
82 $ipcache = <IPCACHE>;
83 close(IPCACHE);
84 chomp $ipcache;
85 }
86
87 if ($ip ne $ipcache) {
88 my $id = 0;
89 my $success = 0;
90 my $line;
91 my $lines = @current;
92
93 foreach $line (@current) {
94 $id++;
95 chomp($line);
96 my @temp = split(/\,/,$line);
97 unless ($temp[7] ne "on") {
98 $settings{'SERVICE'} = $temp[0];
99 $settings{'HOSTNAME'} = $temp[1];
100 $settings{'DOMAIN'} = $temp[2];
101 $settings{'PROXY'} = $temp[3];
102 $settings{'WILDCARDS'} = $temp[4];
103 $settings{'LOGIN'} = $temp[5];
104 $settings{'PASSWORD'} = $temp[6];
105 $settings{'ENABLED'} = $temp[7];
106
107 #Some connection are very stable (more than 40 days). Finally force
108 #one update / month to avoid account lost
109 #cron call once/week with -f & once/month with -f -m options
110 #minimize update ?
111 if ( ($settings{'MINIMIZEUPDATES'} eq 'on') && ($ARGV[1] ne '-m') ) {
112 if (General::DyndnsServiceSync($ip, $settings{'HOSTNAME'},$settings{'DOMAIN'})) {
113 &General::log ("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} is uptodate [$ip]");
114 $success++;
115 next; # do not update, go to test next service
116 }
117 }
118 my @service = split(/\./, "$settings{'SERVICE'}");
119 $settings{'SERVICE'} = "$service[0]";
120 if ($settings{'SERVICE'} eq 'no-ip') {
121 open(F, ">${General::swroot}/ddns/noipsettings");
122 flock F, 2;
123 print F "PROXY=" . ($settings{'PROXY'} eq 'on' ? "Y\n" : "N\n");
124 print F "PASSWORD=$settings{'PASSWORD'}\n";
125 print F "NAT=N\n";
126 print F "LOGIN=$settings{'LOGIN'}\n";
127 print F "INTERVAL=1\n";
128 if ($settings{'HOSTNAME'} !~ s/$General::noipprefix//) {
129 print F "HOSTNAME=$settings{'HOSTNAME'}\n";
130 print F "GROUP=\n";
131 } else {
132 print F "HOSTNAME=\n";
133 print F "GROUP=$settings{'HOSTNAME'}\n";
134 }
135 print F "DOMAIN=$settings{'DOMAIN'}\n";
136 print F "DEVICE=\n";
137 print F "DAEMON=N\n";
138 close(F);
139
140 my @ddnscommand = ('/usr/bin/noip','-c',"${General::swroot}/ddns/noipsettings",'-i',"$ip");
141
142 my $result = system(@ddnscommand);
143 if ( $result != 0) {
144 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : failure");
145 } else {
146 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : success");
147 $success++;
148 }
149 }
150
151 elsif ($settings{'SERVICE'} eq 'cjb') {
152 # use proxy ?
153 my %proxysettings;
154 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
155 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
156 my ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
157 Net::SSLeay::set_proxy($peer,$peerport,$proxysettings{'UPSTREAM_USER'},$proxysettings{'UPSTREAM_PASSWORD'} );
158 }
159
160 my ($out, $response) = Net::SSLeay::get_http( 'www.cjb.net',
161 80,
162 "/cgi-bin/dynip.cgi?username=$settings{'LOGIN'}&password=$settings{'PASSWORD'}&ip=$ip",
163 Net::SSLeay::make_headers('User-Agent' => 'IPFire' )
164 );
165
166 if ($response =~ m%HTTP/1\.. 200 OK%) {
167 if ( $out !~ m/has been updated to point to/ ) {
168 &General::log("Dynamic DNS ip-update for cjb.net ($settings{'LOGIN'}) : failure (bad password or login)");
169 } else {
170 &General::log("Dynamic DNS ip-update for cjb.net ($settings{'LOGIN'}) : success");
171 $success++;
172 }
173 } else {
174 &General::log("Dynamic DNS ip-update for cjb.net ($settings{'LOGIN'}) : failure (could not connect to server)");
175 }
176 }
177 elsif ($settings{'SERVICE'} eq 'mydyn') {
178 # use proxy ?
179 my %proxysettings;
180 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
181 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
182 my ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
183 Net::SSLeay::set_proxy($peer,$peerport,$proxysettings{'UPSTREAM_USER'},$proxysettings{'UPSTREAM_PASSWORD'} );
184 }
185
186 my ($out, $response) = Net::SSLeay::get_http( 'www.mydyn.de',
187 80,
188 "/cgi-bin/update.pl?$settings{'LOGIN'}-$settings{'PASSWORD'}",
189 Net::SSLeay::make_headers('User-Agent' => 'IPFire' )
190 );
191
192 if ($response =~ m%HTTP/1\.. 200 OK%) {
193 if ( $out !~ m/The IP address of the subdomain/ ) {
194 &General::log("Dynamic DNS ip-update for mydyn.de ($settings{'LOGIN'}) : failure (bad password or login)");
195 } else {
196 &General::log("Dynamic DNS ip-update for mydyn.de ($settings{'LOGIN'}) : success");
197 $success++;
198 }
199 } else {
200 &General::log("Dynamic DNS ip-update for mydyn.de ($settings{'LOGIN'}) : failure (could not connect to server)");
201 }
202
203 }
204 elsif ($settings{'SERVICE'} eq 'selfhost') {
205 # use proxy ?
206 my %proxysettings;
207 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
208 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
209 my ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
210 Net::SSLeay::set_proxy($peer,$peerport,$proxysettings{'UPSTREAM_USER'},$proxysettings{'UPSTREAM_PASSWORD'} );
211 }
212
213 my ($out, $response) = Net::SSLeay::get_https( 'carol.selfhost.de',
214 443,
215 "/update?username=$settings{'LOGIN'}&password=$settings{'PASSWORD'}&textmodi=1",
216 Net::SSLeay::make_headers('User-Agent' => 'IPFire' )
217 );
218
219 if ($response =~ m%HTTP/1\.. 200 OK%) {
220 if ( $out !~ m/status=(200|204)/ ) {
221 $out =~ s/\n/ /g;
222 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : failure ($out)");
223 } else {
224 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : success");
225 $success++;
226 }
227 } else {
228 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : failure (could not connect to server)");
229 }
230 }
231 elsif ($settings{'SERVICE'} eq 'dnspark') {
232 # use proxy ?
233 my %proxysettings;
234 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
235 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
236 my ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
237 Net::SSLeay::set_proxy($peer,$peerport,$proxysettings{'UPSTREAM_USER'},$proxysettings{'UPSTREAM_PASSWORD'} );
238 }
239
240 if ($settings{'HOSTNAME'} eq '') {
241 $settings{'HOSTDOMAIN'} = $settings{'DOMAIN'};
242 } else {
243 $settings{'HOSTDOMAIN'} = "$settings{'HOSTNAME'}.$settings{'DOMAIN'}";
244 }
245
246 my ($out, $response) = Net::SSLeay::get_https( "www.dnspark.net",
247 443,
248 "/api/dynamic/update.php?hostname=$settings{'HOSTDOMAIN'}&ip=$ip",
249 Net::SSLeay::make_headers('User-Agent' => 'IPFire',
250 'Authorization' => 'Basic ' . encode_base64("$settings{'LOGIN'}:$settings{'PASSWORD'}")
251 )
252 );
253 # Valid response are 'ok' 'nochange'
254 if ($response =~ m%HTTP/1\.. 200 OK%) {
255 if ( $out !~ m/^(ok|nochange)/ ) {
256 $out =~ s/\n/ /g;
257 &General::log("Dynamic DNS ip-update for $settings{'HOSTDOMAIN'} : failure ($out)");
258 } else {
259 &General::log("Dynamic DNS ip-update for $settings{'HOSTDOMAIN'} : success");
260 $success++;
261 }
262 } else {
263 &General::log("Dynamic DNS ip-update for $settings{'HOSTDOMAIN'} : failure (could not connect to server, check your credentials)");
264 }
265 }
266 elsif ($settings{'SERVICE'} eq 'enom') {
267 # use proxy ?
268 my %proxysettings;
269 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
270 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
271 my ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
272 Net::SSLeay::set_proxy($peer,$peerport,$proxysettings{'UPSTREAM_USER'},$proxysettings{'UPSTREAM_PASSWORD'} );
273 }
274 if ($settings{'HOSTNAME'} eq '') {
275 $settings{'HOSTDOMAIN'} = $settings{'DOMAIN'};
276 } else {
277 $settings{'HOSTDOMAIN'} = "$settings{'HOSTNAME'}.$settings{'DOMAIN'}";
278 }
279
280 my ($out, $response) = Net::SSLeay::get_http( 'dynamic.name-services.com',
281 80,
282 "/interface.asp?Command=SetDNSHost&Zone=$settings{'DOMAIN'}&DomainPassword=$settings{'PASSWORD'}&Address=$ip",
283 Net::SSLeay::make_headers('User-Agent' => 'IPFire' )
284 );
285
286 if ($response =~ m%HTTP/1\.. 200 OK%) {
287 #Valid responses from update => ErrCount=0
288 if ( $out !~ m/ErrCount=0/ ) {
289 $out =~ s/(\n|\x0D)/ /g;
290 $out =~ /Err1=([\w ]+) /;
291 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : failure ($1)");
292 } else {
293 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : success");
294 $success++;
295 }
296 } else {
297 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : failure (could not connect to server)");
298 }
299 }
300 elsif ($settings{'SERVICE'} eq 'nsupdate') {
301 # Fetch UI configurable values and assemble the host name.
302
303 my $hostName="$settings{'DOMAIN'}";
304 if ($settings{'HOSTNAME'} ne "") {
305 $hostName="$settings{'HOSTNAME'}.$hostName";
306 }
307 my $keyName=$settings{'LOGIN'};
308 my $keySecret=$settings{'PASSWORD'};
309
310 # Use a relatively long TTL value to reduce load on DNS.
311 # Some public Dynamic DNS servers use values around 4 hours,
312 # some use values as low as 60 seconds.
313 # XXX Maybe we could fetch the master value from the server
314 # (not the timed-down version supplied by DNS cache)
315
316 my $timeToLive="3600";
317
318 # Internal setting that can be used to override the DNS server
319 # where the update is applied. It can be of use when testing
320 # against a private DNS server.
321
322 my $masterServer="";
323
324 # Prepare the nsupdate command script to remove and re-add the
325 # updated A record for the domain.
326
327 my $cmdFile="/tmp/nsupdate-$hostName-commands";
328 my $logFile="/tmp/nsupdate-$hostName-result";
329 open(TF, ">$cmdFile");
330 if ($masterServer ne "") {
331 print TF "server $masterServer\n";
332 }
333 if ($keyName ne "" && $keySecret ne "") {
334 print TF "key $keyName $keySecret\n";
335 }
336 print TF "update delete $hostName A\n";
337 print TF "update add $hostName $timeToLive A $ip\n";
338 print TF "send\n";
339 close(TF);
340
341 # Run nsupdate with -v to use TCP instead of UDP because we're
342 # issuing multiple cmds and potentially long keys, and -d to
343 # get diagnostic result output.
344
345 my $result = system("/usr/bin/nsupdate -v -d $cmdFile 2>$logFile");
346 if ($result != 0) {
347 &General::log("Dynamic DNS ip-update for $hostName : failure");
348 open(NSLOG, "$logFile");
349 my @nsLog = <NSLOG>;
350 close(NSLOG);
351 my $logLine;
352 foreach $logLine (@nsLog) {
353 chomp($logLine);
354 if ($logLine ne "") {
355 &General::log("... $logLine");
356 }
357 }
358 } else {
359 &General::log("Dynamic DNS ip-update for $hostName : success");
360 $success++;
361 }
362 unlink $cmdFile, $logFile;
363 }
364 elsif ($settings{'SERVICE'} eq 'freedns') {
365 # use proxy ?
366 my %proxysettings;
367 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
368 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
369 my ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
370 Net::SSLeay::set_proxy($peer,$peerport,$proxysettings{'UPSTREAM_USER'},$proxysettings{'UPSTREAM_PASSWORD'} );
371 }
372
373 my ($out, $response) = Net::SSLeay::get_https( 'freedns.afraid.org',
374 443,
375 "/dynamic/update.php?$settings{'LOGIN'}",
376 Net::SSLeay::make_headers('User-Agent' => 'IPFire' )
377 );
378 #Valid responses from service are:
379 #Updated n host(s) <domain>
380 #ERROR: <ip> has not changed.
381 if ($response =~ m%HTTP/1\.. 200 OK%) {
382 #Valid responses from update => ErrCount=0
383 if ( $out !~ m/(^Updated|Address .* has not changed)/ig ) {
384 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : failure ($out)");
385 } else {
386 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : success");
387 $success++;
388 }
389 } else {
390 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : failure (could not connect to server)");
391 }
392 }
393 elsif ($settings{'SERVICE'} eq 'strato') {
394 # use proxy ?
395 my %proxysettings;
396 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
397 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
398 my ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
399 Net::SSLeay::set_proxy($peer,$peerport,$proxysettings{'UPSTREAM_USER'},$proxysettings{'UPSTREAM_PASSWORD'} );
400 }
401
402 if ($settings{'HOSTNAME'} eq '') {
403 $settings{'HOSTDOMAIN'} = $settings{'DOMAIN'};
404 } else {
405 $settings{'HOSTDOMAIN'} = "$settings{'HOSTNAME'}.$settings{'DOMAIN'}";
406 }
407
408 my ($out, $response) = Net::SSLeay::get_https( 'dyndns.strato.com',
409 443,
410 "/nic/update?hostname=$settings{'HOSTDOMAIN'}&myip=$ip",
411 Net::SSLeay::make_headers('User-Agent' => 'IPFire',
412 'Authorization' => 'Basic ' . encode_base64("$settings{'LOGIN'}:$settings{'PASSWORD'}") )
413 );
414
415 if ($response =~ m%HTTP/1\.. 200 OK%) {
416 #Valid responses from update => ErrCount=0
417 if ( $out =~ m/good |nochg /ig) {
418 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : success");
419 $success++;
420 } else {
421 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : failure1 ($out)");
422 $success++;
423 }
424 } elsif ( $out =~ m/<title>(.*)<\/title>/ig ) {
425 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : failure2 ($1)");
426 } else {
427 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : failure3 ($response)");
428 }
429 }
430 elsif ($settings{'SERVICE'} eq 'regfish') {
431 # use proxy ?
432 my %proxysettings;
433 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
434 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
435 my ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
436 Net::SSLeay::set_proxy($peer,$peerport,$proxysettings{'UPSTREAM_USER'},$proxysettings{'UPSTREAM_PASSWORD'} );
437 }
438 my ($out, $response) = Net::SSLeay::get_https( 'dyndns.regfish.de',
439 443,
440 "/?fqdn=$settings{'DOMAIN'}&ipv4=$ip&forcehost=1&authtype=secure&token=$settings{'LOGIN'}",
441 Net::SSLeay::make_headers('User-Agent' => 'Ipfire' )
442 );
443 #Valid responses from service are:
444 #success|100|update succeeded!
445 #success|101|no update needed at this time..
446 if ($response =~ m%HTTP/1\.. 200 OK%) {
447 if ( $out !~ m/(success\|(100|101)\|)/ig ) {
448 &General::log("Dynamic DNS ip-update for $settings{'DOMAIN'} : failure ($out)");
449 } else {
450 &General::log("Dynamic DNS ip-update for $settings{'DOMAIN'} : success");
451 $success++;
452 }
453 } else {
454 &General::log("Dynamic DNS ip-update for $settings{'DOMAIN'} : failure (could not connect to server)");
455 }
456 }
457 elsif ($settings{'SERVICE'} eq 'ovh') {
458 my %proxysettings;
459 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
460
461 my $peer = 'www.ovh.com';
462 my $peerport = 80;
463
464 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
465 ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
466 }
467
468 my $sock;
469 unless($sock = new IO::Socket::INET (PeerAddr => $peer, PeerPort => $peerport, Proto => 'tcp', Timeout => 5)) {
470 &General::log("Dynamic DNS failure : could not connect to $peer:$peerport: $@");
471 next;
472 }
473
474 if ($settings{'HOSTNAME'} eq '') {
475 $settings{'HOSTDOMAIN'} = $settings{'DOMAIN'};
476 } else {
477 $settings{'HOSTDOMAIN'} = "$settings{'HOSTNAME'}.$settings{'DOMAIN'}";
478 }
479
480 my ($GET_CMD, $code64);
481 $GET_CMD = "GET http://www.ovh.com/nic/update?system=dyndns&hostname=$settings{'HOSTDOMAIN'}&myip=$ip HTTP/1.1\r\n";
482 $GET_CMD .= "Host: www.ovh.com\r\n";
483 chomp($code64 = encode_base64("$settings{'LOGIN'}:$settings{'PASSWORD'}"));
484 $GET_CMD .= "Authorization: Basic $code64\r\n";
485 $GET_CMD .= "User-Agent: ipfire\r\n";
486 #$GET_CMD .= "Content-Type: application/x-www-form-urlencoded\r\n";
487 $GET_CMD .= "\r\n";
488 print $sock "$GET_CMD";
489
490 my $out = '';
491 while(<$sock>) {
492 $out .= $_;
493 }
494 close($sock);
495
496 #HTTP response => error (in Title tag) else text response
497 #Valid responses from service:good,nochg (ez-ipupdate like)
498 #Should use ez-ipdate but "system=dyndns" is not present
499 if ( $out =~ m/<Title>(.*)<\/Title>/ig ) {
500 &General::log("Dynamic DNS ovh.com : failure ($1)");
501 }
502 elsif ($out !~ m/good |nochg /ig) {
503 $out =~ s/.+?\015?\012\015?\012//s; # header HTTP
504 my @out = split("\r", $out);
505 &General::log("Dynamic DNS ip-update for $settings{'DOMAIN'} : failure ($out[1])");
506 } else {
507 &General::log("Dynamic DNS ip-update for $settings{'DOMAIN'} : success");
508 $success++;
509 }
510 }
511 elsif ($settings{'SERVICE'} eq 'dtdns') {
512 # use proxy ?
513 my %proxysettings;
514 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
515 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
516 my ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
517 Net::SSLeay::set_proxy($peer,$peerport,$proxysettings{'UPSTREAM_USER'},$proxysettings{'UPSTREAM_PASSWORD'} );
518 }
519
520 if ($settings{'HOSTNAME'} eq '') {
521 $settings{'HOSTDOMAIN'} = $settings{'DOMAIN'};
522 } else {
523 $settings{'HOSTDOMAIN'} = "$settings{'HOSTNAME'}.$settings{'DOMAIN'}";
524 }
525
526 my ($out, $response) = Net::SSLeay::get_http( 'www.dtdns.com',
527 80,
528 "/api/autodns.cfm?id=$settings{'HOSTDOMAIN'}&pw=$settings{'PASSWORD'}",
529 Net::SSLeay::make_headers('User-Agent' => 'IPFire' )
530 );
531 #Valid responses from service are:
532 # now points to
533 #
534 if ($response =~ m%HTTP/1\.. 200 OK%) {
535 if ( $out !~ m/Host .* now points to/ig ) {
536 &General::log("Dynamic DNS ip-update for $settings{'HOSTDOMAIN'} : failure ($out)");
537 } else {
538 &General::log("Dynamic DNS ip-update for $settings{'HOSTDOMAIN'} : success");
539 $success++;
540 }
541 } else {
542 &General::log("Dynamic DNS ip-update for $settings{'HOSTDOMAIN'} : failure (could not connect to server)");
543 }
544 }
545 elsif ($settings{'SERVICE'} eq 'dynu') {
546 # use proxy ?
547 my %proxysettings;
548 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
549 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
550 my ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
551 Net::SSLeay::set_proxy($peer,$peerport,$proxysettings{'UPSTREAM_USER'},$proxysettings{'UPSTREAM_PASSWORD'} );
552 }
553
554 if ($settings{'HOSTNAME'} eq '') {
555 $settings{'HOSTDOMAIN'} = $settings{'DOMAIN'};
556 } else {
557 $settings{'HOSTDOMAIN'} = "$settings{'HOSTNAME'}.$settings{'DOMAIN'}";
558 }
559
560 my ($out, $response) = Net::SSLeay::get_http( 'dynserv.ca',
561 80,
562 "/dyn/dynengine.cgi?func=set&name=$settings{'LOGIN'}&pass=$settings{'PASSWORD'}&ip=$ip&domain=$settings{'DOMAIN'}",
563 Net::SSLeay::make_headers('User-Agent' => 'IPFire' )
564 );
565 #Valid responses from service are:
566 # 02 == Domain already exists, refreshing data for ... => xxx.xxx.xxx.xxx
567 #
568 if ($response =~ m%HTTP/1\.. 200 OK%) {
569 if ( $out !~ m/Domain already exists, refreshing data for/ig ) {
570 &General::log("Dynamic DNS ip-update for $settings{'HOSTDOMAIN'} : failure ($out)");
571 } else {
572 &General::log("Dynamic DNS ip-update for $settings{'HOSTDOMAIN'} : success");
573 $success++;
574 }
575 } else {
576 &General::log("Dynamic DNS ip-update for $settings{'HOSTDOMAIN'} : failure (could not connect to server)");
577 }
578 } else {
579 if ($settings{'WILDCARDS'} eq 'on') {
580 $settings{'WILDCARDS'} = '-w';
581 } else {
582 $settings{'WILDCARDS'} = '';
583 }
584
585 if (($settings{'SERVICE'} eq 'dyndns-custom' ||
586 $settings{'SERVICE'} eq 'easydns' ||
587 $settings{'SERVICE'} eq 'zoneedit') && $settings{'HOSTNAME'} eq '') {
588 $settings{'HOSTDOMAIN'} = $settings{'DOMAIN'};
589 } else {
590 $settings{'HOSTDOMAIN'} = "$settings{'HOSTNAME'}.$settings{'DOMAIN'}";
591 }
592
593 my @ddnscommand = ('/usr/bin/ez-ipupdate', '-a', "$ip", '-S', "$settings{'SERVICE'}", '-u', "$settings{'LOGIN'}:$settings{'PASSWORD'}", '-h', "$settings{'HOSTDOMAIN'}", "$settings{'WILDCARDS'}", '-q');
594
595 my $result = system(@ddnscommand);
596 if ( $result != 0) {
597 &General::log("Dynamic DNS ip-update for $settings{'HOSTDOMAIN'}: failure");
598 } else {
599 &General::log("Dynamic DNS ip-update for $settings{'HOSTDOMAIN'}: success");
600 $success++;
601 }
602 }
603 } else {
604 # If a line is disabled, then we should discount it
605 $lines--;
606 }
607 }
608
609 if ($lines == $success) {
610 open(IPCACHE, ">$cachefile");
611 flock IPCACHE, 2;
612 print IPCACHE $ip;
613 close(IPCACHE);
614 exit 1;
615 }
616
617 }
618 exit 0;
619
620 # Extracted from Base64.pm
621 sub encode_base64 ($;$) {
622 my $res = "";
623 my $eol = $_[1];
624 $eol = "\n" unless defined $eol;
625 pos($_[0]) = 0; # ensure start at the beginning
626 while ($_[0] =~ /(.{1,45})/gs) {
627 $res .= substr(pack('u', $1), 1);
628 chop($res);
629 }
630 $res =~ tr|` -_|AA-Za-z0-9+/|; # `# help emacs
631 # fix padding at the end
632 my $padding = (3 - length($_[0]) % 3) % 3;
633 $res =~ s/.{$padding}$/'=' x $padding/e if $padding;
634 # break encoded string into lines of no more than 76 characters each
635 if (length $eol) {
636 $res =~ s/(.{1,76})/$1$eol/g;
637 }
638 $res;
639 }
640
641
642
643 __END__
644 old code for selfhost.de
645
646 my %proxysettings;
647 &General::readhash("${General::swroot}/proxy/settings", \%proxysettings);
648
649 my $peer = 'carol.selfhost.de';
650 my $peerport = 80;
651
652 if ($_=$proxysettings{'UPSTREAM_PROXY'}) {
653 ($peer, $peerport) = (/^(?:[a-zA-Z ]+\:\/\/)?(?:[A-Za-z0-9\_\.\-]*?(?:\:[A-Za-z0-9\_\.\-]*?)?\@)?([a-zA-Z0-9\.\_\-]*?)(?:\:([0-9]{1,5}))?(?:\/.*?)?$/);
654 }
655
656 my $sock;
657 unless($sock = new IO::Socket::INET (PeerAddr => $peer, PeerPort => $peerport, Proto => 'tcp', Timeout => 5)) {
658 die "Could not connect to $peer:$peerport: $@";
659 return 1;
660 }
661
662 my $GET_CMD;
663 $GET_CMD = "GET https://carol.selfhost.de/update?username=$settings{'LOGIN'}&password=$settings{'PASSWORD'}&myip=$ip&textmodi=1 HTTP/1.1\r\n";
664 $GET_CMD .= "Host: carol.selfhost.de\r\n";
665 $GET_CMD .= "User-Agent: ipfire\r\n";
666 $GET_CMD .= "Connection: close\r\n\r\n";
667 print $sock "$GET_CMD";
668
669 my $out = '';
670 while(<$sock>) {
671 $out .= $_;
672 }
673 close($sock);
674
675 if ( $out !~ m/status=(200|204)/ ) {
676 #cleanup http response...
677 $out =~ s/.+?\015?\012\015?\012//s; # header HTTP
678 my @out = split("\r", $out);
679 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : failure ($out[1])");
680 } else {
681 &General::log("Dynamic DNS ip-update for $settings{'HOSTNAME'}.$settings{'DOMAIN'} : success");
682 $success++;
683 }
684
685
686